/* #region subnav */
.header-top-custom {
    display: none;
}

.aw-subnav {
    font-family: Inter;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    box-shadow: none;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s, box-shadow 0.35s;
}

body.aw-subnav-active .aw-subnav,
.aw-subnav.aw-mobile-open {
    background: #fff;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.aw-subnav-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 72px;
}

.aw-subnav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.aw-subnav-logo span {
    font-family: Inter SemiBold;
    font-size: 24px;
    color: #181D27;
    white-space: nowrap;
}

.aw-subnav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.aw-subnav-item {
    position: relative;
}

.aw-subnav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-family: Inter;
    font-size: 14px;
    color: #181D27;
    text-decoration: none;
    white-space: nowrap;
}

.aw-subnav-link:hover {
    color: #181D27;
}

.aw-subnav-link:focus {
    color: #2563EB;
}

.aw-subnav-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.aw-subnav-item.is-open .aw-subnav-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.aw-dropdown {
    position: absolute;
    top: 100%;
    left: -300px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
    min-width: 860px;
}

.aw-subnav-item.is-open .aw-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.aw-dropdown-inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, #F8FAFF 42.49%, #D9E6FF 109.34%) border-box;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 12px;
}

.aw-dropdown-col-title {
    font-family: Inter SemiBold;
    color: #252B37;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    padding-left: 12px;
    padding-bottom: 4px;
}

.aw-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #252B37;
    text-decoration: none;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.aw-dropdown-item:hover {
    background: #DDEBFF;
    color: #2A3AD8;
}

/* Hide site main header when scrolled */
body.aw-subnav-active header.header {
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile */
.aw-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

.aw-overlay.is-visible {
    display: block;
}

body.aw-menu-open {
    overflow: hidden;
}

.aw-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.aw-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.aw-mobile-menu.is-open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.aw-mobile-menu-inner {
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #EAECF0;
}

.aw-mobile-link {
    display: block;
    padding: 12px;
    font-size: 15px;
    color: #181D27;
    text-decoration: none;
    border-radius: 8px;
}

.aw-mobile-link:hover {
    background: #F5F5F5;
}

.aw-mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Inter;
    font-size: 15px;
    color: #181D27;
    border-radius: 8px;
    text-align: left;
}

.aw-mobile-accordion-btn:hover {
    background: #F5F5F5;
}

.aw-mobile-accordion-btn .aw-subnav-chevron {
    flex-shrink: 0;
}

.aw-mobile-accordion.is-open .aw-subnav-chevron {
    transform: rotate(180deg);
}

.aw-mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 8px;
}

.aw-mobile-accordion.is-open .aw-mobile-accordion-body {
    max-height: 800px;
}

.aw-mobile-group-title {
    font-family: Inter SemiBold;
    font-size: 11px;
    color: #717680;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px 4px;
}

@media (max-width: 979px) {
    .aw-subnav {
        top: 0 !important;
        transform: translateY(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s, box-shadow 0.35s;
    }

    body.aw-subnav-active .aw-subnav,
    .aw-subnav.aw-mobile-open {
        transform: translateY(0);
    }

    .aw-subnav-menu {
        display: none;
    }

    .aw-menu-btn {
        display: flex;
    }
}

/* #endregion */

/* #region common */
.agentwork-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
    position: relative;
}

.agentwork-page .container {
    width: 100%;
    max-width: 1310px;
}

.section-p {
    padding: 50px 0;
}

.p-title {
    padding-bottom: 12px;
}

.text-center {
    text-align: center;
}

.text-semibold {
    font-family: Inter SemiBold;
}

.text-bold {
    font-family: Inter Bold;
}

.default-title {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.default-subtitle {
    font-size: 20px;
    color: #414651;
}

.default-desc {
    background: url(/sites/amis/images/pages/agentwork/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    text-align: start;
}

.gradient-text {
    background: linear-gradient(62.39deg, #F969B7 -4.29%, #875BF7 29.11%, #1B49F5 96.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.justify-center {
    justify-content: center;
}

a.base-btn {
    position: relative;
    font-family: Inter SemiBold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 12px;
    transition: all ease 0.5s;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

a.primary-btn {
    background: linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%), linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn {
    border: 2px solid transparent;
    padding: 12px 24px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%) border-box;
    /* color: #1B49F5; */
}

a.second-btn span {
    background:
        linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%),
        linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

a.third-btn {
    background-color: #FFF;
    padding: 14px 26px;
    color: #1B49F5;
}

a.arrow-btn img {
    transform: translateX(0px);
    transition: transform 0.3s ease;
}

a.arrow-btn:hover img {
    transform: translateX(4px);
}

a.shadow-btn {
    opacity: 1 !important;
}

.shadow-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #22d3ee,
            #4ade80,
            #ff6ec4);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.shadow-btn:hover::before {
    opacity: 1;
    animation: shadowMove 4s linear infinite;
}

.border-btn:hover {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #4ade80,
            #22d3ee,
            #ff6ec4) border-box;
    background-size: 200% 200%;
    animation: borderMove 3s linear infinite;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.bg-play-btn {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #2662FF;
}

.play-video-item:hover .bg-play-btn {
    animation: pulse 1.2s ease infinite;
}

.agentwork-page form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .submit-wrapper .btn-form-submit {
    border-radius: 12px !important;
    background: linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%) !important;
    height: 52px !important;
    font-family: Inter SemiBold !important;
    font-size: 16px !important;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes shadowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@media (max-width: 979px) {
    .default-title {
        font-size: 28px;
    }

    .default-subtitle {
        font-size: 18px;
    }

    .section-p {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .default-subtitle {
        font-size: 16px;
    }

    .cta-group {
        display: grid;
    }

    .play-btn {
        width: 36px;
        height: 36px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #endregion */

/* #region hero */
.hero {
    position: relative;
    background: linear-gradient(0deg, rgba(89, 147, 255, 0.35) -25.64%, rgba(255, 255, 255, 0.00) 58.21%);
    padding: 120px 0 50px;
}

.hero-bg-hl-1 {
    position: absolute;
    bottom: 20%;
    left: 14%;
}

.hero-bg-hl-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: Inter Bold;
    font-size: 52px;
    font-weight: normal;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #252B37;
    padding-top: 16px;
}

.hero-desc {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 830px;
    margin: 32px auto;
}

.hero-desc-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-wrap {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 64px;
}

.hero-image {
    width: 733px;
    height: 451px;
    position: relative;
}

.hero-image img {
    position: absolute;
    width: 111%;
    max-width: 814px;
    top: -18%;
    left: -8%;
}

.hero-register {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 515px;
    border: 3px solid transparent;
    background:
        linear-gradient(#FFF, #FFF) padding-box,
        linear-gradient(43.36deg, rgba(89, 147, 255, 0.4) 31.77%, rgba(188, 212, 255, 0.4) 100.81%) border-box;
    border-radius: 24px;
    overflow: hidden;
    padding: 8px;
}

.hero-register-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    color: #252B37;
    padding: 24px 24px 0;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title br {
        display: none;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
    }

    .hero-desc {
        justify-content: start;
        margin: 24px auto;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-desc {
        gap: 12px;
        justify-content: start;
    }

    .hero-register {
        padding: 0;
    }

    .hero-register-title {
        font-size: 18px;
    }

    .hero-image {
        width: 100%;
        aspect-ratio: 733/451;
        height: auto;
    }
}

/* #endregion */

/* #region system */
.system-wrap {
    padding-top: 40px;
    display: flex;
    gap: 32px;
}

.system-wrap img {
    flex: 1;
}

@media (max-width: 979px) {
    .system-wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .system-wrap {
        padding-top: 24px;
    }
}

/* #endregion */

/* #region solution */
.solution-bg {
    background: url(/sites/amis/images/pages/agentwork/bg-solution.webp) no-repeat center;
    background-size: cover;
    border-radius: 24px;
    padding: 32px 0;
    max-width: 1472px;
    margin: 0 auto;
}

.solution-head {
    max-width: 600px;
}

.solution-wrap {
    display: flex;
    gap: 32px;
    padding-top: 24px;
}

.solution-item {
    background-color: #FFF;
    padding: 16px;
    border-radius: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-item-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
}

.solution-item-title {
    font-family: Inter SemiBold;
    font-size: 20px;
}

.solution-item-subtitle {
    color: #535862;
    font-size: 14px;
}

.solution-item-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
}

a.solution-item-more {
    display: flex;
    align-items: center;
    font-family: Inter SemiBold;
    color: #2563EB;
}

img.solution-item-img {
    margin: 12px auto 0;
}

@media (max-width: 979px) {
    .solution-bg {
        padding: 40px 0;
    }

    .solution-wrap {
        flex-direction: column;
    }

    .solution-item-subtitle br {
        display: none;
    }
}

@media (max-width: 767px) {
    .solution-bg {
        background-position: left center;
        padding: 32px 0;
    }

    .solution-item-title {
        font-size: 18px;
    }

    .solution-wrap {
        padding-top: 24px;
        gap: 24px;
    }
}

/* #endregion */

/* #region support */
.support-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.support-tabs {
    display: inline-flex;
    background: #F5F5F5;
    border-radius: 9999px;
    padding: 8px;
}

.support-tab {
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #181D27;
    background: transparent;
    border: none;
    border-radius: 9999px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all ease 0.3s;
    white-space: nowrap;
}

.support-tab.active {
    background: #FFF;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.support-tab.active span {
    background:
        linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%),
        linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.support-tab-content {
    display: none;
    padding-top: 32px;
}

.support-tab-content.active {
    display: block;
}

.support-carousel .owl-stage {
    display: flex;
}

.support-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}

.support-carousel .owl-dot span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #E9EAEB;
    margin: 0 4px;
    transition: background ease 0.3s;
}

.support-carousel .owl-dot.active span {
    background: #5576FF;
}

.support-card {
    margin: 12px;
    background: #FFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EAECF0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 24px);
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.support-card-img {
    width: 100%;
    aspect-ratio: 405/220;
    overflow: hidden;
}

.support-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.support-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.support-card-tag {
    display: inline-block;
    font-size: 14px;
    border-radius: 9999px;
    padding: 4px 16px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.support-card-tag.tag-violet {
    background: #ECE9FE;
    color: #7839EE;
}

.support-card-tag.tag-blue {
    background: #EEF4FF;
    color: #2662FF;
}

.support-card-tag.tag-red {
    background: #FEF3F2;
    color: #F04438;
}

.support-card-tag.tag-gray {
    background: #ECF4FF;
    color: #3E4784;
}

.support-card-tag.tag-green {
    background: #EDFCF2;
    color: #099250;
}

.support-card-title {
    font-family: Inter SemiBold;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.support-card-desc {
    color: #535862;
}

@media (max-width: 979px) {
    .support-tabs-wrap {
        margin-top: 24px;
    }

    .support-tab {
        font-size: 15px;
        padding: 9px 16px;
    }

    .support-tab-content {
        padding-top: 24px;
    }

    .support-card-body {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .support-tabs-wrap {
        margin-top: 20px;
    }

    .support-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 24px;
    }

    .support-tab {
        font-size: 14px;
        padding: 8px 14px;
    }

    .support-tab-content {
        padding-top: 20px;
    }

    .support-card-title {
        font-size: 16px;
    }
}

/* #endregion */

/* #endregion */

/* #region feature */
.feature-bg {
    background: radial-gradient(98.84% 230.38% at 29.9% -15.63%, rgba(236, 233, 254, 0.25) 0%, rgba(255, 255, 255, 0) 86.54%),
        radial-gradient(79.39% 164.13% at -9.82% -20.19%, rgba(120, 57, 238, 0.02) 0%, rgba(188, 212, 255, 0.1) 34.14%, rgba(255, 255, 255, 0) 86.54%),
        radial-gradient(94.38% 196.71% at 50.88% -17.84%, rgba(142, 185, 255, 0.32) 7.23%, rgba(142, 185, 255, 0.2) 28.09%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    padding: 96px 0;
}

.feature-wrap {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    background-color: #FFF;
    padding: 24px 24px 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.feature-item-img {
    margin: 0 auto;
}

.feature-item-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    padding-bottom: 8px;
}

.feature-item-desc {
    color: #535862;
}

@media (max-width: 979px) {
    .feature-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .feature-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item-title {
        font-size: 18px;
    }
}

/* #endregion */

/* #region deploy */
.deploy-panel {
    display: flex;
    gap: 64px;
}

.deploy-panel .tab-panel-videos {
    min-width: 0;
    width: 100%;
    max-width: 732px;
}

.deploy-panel .tab-panel-video {
    display: none;
    position: relative;
    border-radius: 24px;
    cursor: pointer;
    overflow: hidden;
}

.deploy-panel .tab-panel-video.active {
    display: block;
    animation: deployVideoIn 0.4s ease forwards;
}

@keyframes deployVideoIn {
    from {
        /* opacity: 0; */
        transform: translateX(24px);
    }

    to {
        /* opacity: 1; */
        transform: translateX(0);
    }
}

.deploy-thumb {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.deploy-panel .tab-panel-list {
    flex: 1;
    min-width: 0;
}

.deploy-title {
    margin-bottom: 40px;
}

.deploy-panel .tab-panel-item {
    border-radius: 16px;
    border: 1px solid transparent;
    padding: 16px 20px;
    cursor: pointer;
    transition: background ease 0.3s;
}

.deploy-panel .tab-panel-item.active {
    border: 1px solid #ECE9FE;
    background: #FFF;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.deploy-panel .tab-panel-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deploy-step-icon {
    flex-shrink: 0;
}

.deploy-panel .tab-panel-title span {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #181D27;
}

.deploy-panel .tab-panel-desc {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 0 0 40px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.deploy-panel .tab-panel-item.active .tab-panel-desc {
    max-height: 300px;
    opacity: 1;
    padding: 16px 0 0 40px;
}

@media (max-width: 1200px) {
    .tab-panel-videos {
        width: unset;
        flex: 1;
    }

    .deploy-panel {
        align-items: center;
    }
}

@media (max-width: 979px) {
    .deploy-panel {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .deploy-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .deploy-panel .tab-panel-videos {
        width: 100%;
    }

    .deploy-panel .tab-panel-title span {
        font-size: 16px;
    }

    .deploy-panel .tab-panel-desc {
        padding-left: 0;
    }

    .deploy-panel .tab-panel-item.active .tab-panel-desc {
        padding: 16px 0 0 0;
    }
}

/* #endregion */

/* #region statistic */
.statistic-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.statistic-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-radius: 16px;
    border: 3px solid #FFF;
    background: #FFF;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.statistic-item-desc {
    color: #535862;
    font-size: 18px;
}

@media (max-width: 979px) {
    .statistic-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .statistic-wrap {
        grid-template-columns: 1fr;
    }
}

/* #endregion */

/* #region customer */
.customer-main {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.customer-left {
    flex: 1;
    min-width: 0;
}

.customer-title {
    margin-bottom: 40px;
}

.customer-item {
    display: none;
    animation: customerFadeIn 0.35s ease forwards;
}

.customer-item.active {
    display: block;
}

@keyframes customerFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-name {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 16px 0 16px 20px;
    line-height: 1.4;
    border-left: 4px solid #5576FF;
}

.customer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 16px 0 16px 20px;
    border-left: 4px solid #E9EAEB;
}

.customer-stat-num {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.25;
    color: #181D27;
    margin-bottom: 12px;
}

.customer-stat-desc {
    color: #535862;
    font-size: 18px;
    line-height: 1.333;
}

.customer-channels {
    padding: 16px 24px;
    border-left: 4px solid #E9EAEB;
}

.customer-channels-label {
    color: #535862;
    font-size: 18px;
    line-height: 1.333;
    margin-bottom: 20px;
}

.customer-channels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 32px;
}

.customer-channel {
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #181D27;
}

/* Right side */
.customer-right {
    flex: 0 0 auto;
    width: 58%;
    max-width: 732px;
}

.customer-img {
    display: none;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    animation: customerFadeIn 0.35s ease forwards;
}

.customer-img.active {
    display: block;
}

.customer-img>img {
    width: 100%;
    display: block;
    aspect-ratio: 732/488;
    object-fit: cover;
}

.customer-img-overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(188, 212, 255, 0.16) 79.18%, #759AFF 104.44%);
}

.customer-img-desc {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 24px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.customer-img-name {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
}

a.customer-case-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter SemiBold;
    color: #FFF;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Logo navigation */
.customer-logos {
    padding-top: 32px;
}

.customer-logos .owl-stage {
    display: flex;
}

.customer-logos .owl-item+.owl-item .customer-logo {
    border-left: 1px solid #D7D7D7;
}

.customer-logo {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    filter: grayscale(1) opacity(0.4);
    transition: filter ease 0.3s;
}

.customer-logo.active {
    filter: none;
}

.customer-logo img {
    max-width: unset;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1200px) {
    .customer-main {
        gap: 40px;
    }

    .customer-right {
        width: 50%;
    }
}

@media (max-width: 979px) {
    .customer-main {
        flex-direction: column;
        gap: 32px;
    }

    .customer-right {
        width: 100%;
        max-width: 100%;
    }

    .customer-title {
        margin-bottom: 28px;
    }

    .customer-stat-num {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .customer-stat-num {
        font-size: 28px;
    }

    .customer-logos {
        margin-top: 28px;
        padding-top: 20px;
    }

    .customer-logo {
        padding: 12px 16px;
    }

    .customer-img-desc {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 16px 16px;
    }

    .customer-img-name {
        font-size: 16px;
    }

    .customer-name,
    .customer-stat-desc {
        font-size: 16px;
    }

    .customer-stats {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .customer-name,
    .customer-stats,
    .customer-channels {
        padding: 8px 0 8px 16px;
    }
}

/* #endregion */

/* #region advice */
.advice-wrap {
    background: url(/sites/amis/images/pages/agentwork/bg-cta-section.webp) no-repeat center;
    background-size: cover;
    padding: 48px;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    border-radius: 24px;
}

.advice-title {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.67;
    max-width: 490px;
}

.advice-cta {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .advice-title {
        max-width: 300px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .advice-wrap {
        padding: 16px 24px;
        flex-direction: column;
        background-position: -40px;
    }

    .advice-title {
        text-align: center;
        font-size: 20px;
    }
}

/* #endregion */