/* #region common */
.inbot-page {
    position: relative;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
}

.inbot-page .container {
    width: 100%;
    max-width: 1310px;
}

.nowrap {
    white-space: nowrap;
}

.section-p {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-family: Inter Bold;
}

.text-semibold {
    font-family: Inter SemiBold;
}

.default-title {
    font-family: Inter Bold;
    font-size: 32px;
    letter-spacing: -0.2px;
}

.default-subtitle {
    color: #535862;
}

.default-desc {
    background: url(/meInvoice/images/inbot/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    color: #414651;
    text-align: start;
    letter-spacing: -0.2px;
}

.pd-bottom {
    padding-bottom: 12px;
}

.primary-color {
    color: #1B49F5;
}

.gradient-text {
    background: linear-gradient(76.24deg, #1B49F5 0%, #7839EE 62.45%, #FDA29B 130.54%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    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;
}

a.primary-btn {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn {
    border: 2px solid transparent;
    padding: 12px 24px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(86.1deg, #1B49F5 0%, #5993FF 152.28%) border-box;
    color: #1B49F5;
}

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;
}

.inbot-page form[lz-id='fe8eb49f-63ae-469b-83be-0b0fc4cc5975'].private-form .submit-wrapper .btn-form-submit {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    padding: 14px 20px !important;
    width: 100% !important;
    height: auto !important;
    line-height: 24px !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;
    }

    .section-p {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .default-desc {
        font-size: 14px;
    }

    .cta-group {
        justify-content: center;
    }

    a.primary-btn {
        padding: 14px 20px;
    }

    a.second-btn {
        padding: 12px 20px;
    }

    .play-btn {
        width: 36px;
        height: 36px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #endregion */

/* #region hero */
.hero {
    position: relative;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
        radial-gradient(69.12% 102.34% at 52.42% 148.76%, rgba(248, 250, 255, 0.5) 0%, rgba(142, 185, 255, 0.5) 33.57%, rgba(255, 255, 255, 0.5) 100%);
}

.hero-bg-hl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: Inter Bold;
    font-size: 52px;
    font-weight: normal;
    line-height: 1.2;
}

.hero-desc {
    color: #414651;
    padding: 12px 0 32px;
}

.hero-wrap {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 64px;
}

.hero-image img {
    margin-top: -16px;
}

.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;
}

.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,
    .hero-desc br {
        display: none;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-register-title {
        font-size: 18px;
    }
}

/* #endregion */

/* #region ai agent */
.agent-wrap {
    display: flex;
    align-items: center;
    gap: 64px;
}

.agent-video {
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 608px;
}

.agent-subtitle {
    font-size: 20px;
    padding-top: 12px;
}

.agent-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
}

@media (max-width: 1024px) {
    .agent-wrap {
        flex-direction: column;
        gap: 32px;
    }

    .agent-subtitle {
        font-size: 18px;
    }

    .ai-agent .default-title,
    .agent-subtitle {
        text-align: center;
    }

    .agent-desc {
        gap: 16px;
    }

    .agent-cta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .agent-wrap {
        gap: 24px;
    }

    .agent-subtitle {
        font-size: 16px;
    }

    .agent-desc {
        padding: 24px 0;
    }
}

/* #endregion */

/* #region recommend */
.recommend {
    background: url(/meInvoice/images/inbot/bg-recommend.webp) no-repeat center;
    background-size: cover;
    padding-bottom: 0;
}

.recommend-img {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .recommend-img {
        margin-top: 32px;
    }
}

/* #endregion */

/* #region feature */
.feature-wrap {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.feature-row-reverse {
    flex-direction: row-reverse;
}

.feature-desc {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1024px) {

    .feature-row,
    .feature-row-reverse {
        flex-direction: column;
        gap: 32px;
    }

    .feature-wrap {
        gap: 40px;
    }

    .feature-desc {
        padding: 24px 0;
        gap: 16px;
    }
}

@media (max-width: 767px) {

    .feature-row,
    .feature-row-reverse {
        gap: 20px;
    }
}

/* #endregion */

/* #region review */
.review .default-title {
    margin-bottom: 40px;
}

.review-wrap {
    padding: 0 4px;
}

/* Center (2nd) owl item is featured */
.review-wrap.owl-carousel .owl-stage {
    display: flex;
}

.review-item {
    background: #FFF;
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: box-shadow 0.3s ease;
    margin: 12px 12px 20px;
    min-height: 500px;
}

.review-item-featured {
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.review-avatar {
    position: relative;
    width: 166px;
    height: 166px;
    flex-shrink: 0;
}

.review-avatar>img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.review-item img.review-quote {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
}

.review-name {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #181D27;
    padding-bottom: 4px;
}

.review-position {
    color: #535862;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.review-content {
    font-size: 18px;
}

/* Owl carousel overrides for review */
.review-wrap.owl-theme .owl-dots {
    margin-top: 32px;
}

.review-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.review-wrap.owl-theme .owl-dots .owl-dot.active span,
.review-wrap.owl-theme .owl-dots .owl-dot:hover span {
    background: #1451E1;
}

.review-wrap.owl-theme .owl-nav {
    margin: 0;
}

.review-wrap.owl-theme .owl-nav [class*='owl-'] {
    display: none;
}

.review-wrap:hover .owl-nav [class*='owl-'] {
    display: block;
}

.review-wrap.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.review-wrap.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    right: -48px;
    transform: translateY(-50%);
}

.review-wrap.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    left: -48px;
    transform: translateY(-50%);
}

.review-cta {
    padding: 32px 0 8px;
}

.review-note {
    color: #414651;
}

@media (max-width: 979px) {
    .review .default-title {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .review .default-title {
        margin-bottom: 20px;
    }

    .review-item {
        padding: 24px 12px;
        min-height: 425px;
    }

    .review-name {
        font-size: 16px;
    }

    .review-content {
        font-size: 14px;
    }

    .review-cta {
        padding: 24px 0 4px;
    }
}

/* #endregion */

/* #region news */
.news {
    background: #EEF4FF;
}

.new-wrap {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.new-item {
    margin: 12px;
    overflow: hidden;
    background-color: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.new-item-thumb {
    display: block;
    border-radius: 16px;
    aspect-ratio: 357/180;
    overflow: hidden;
}

.new-item-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #181D27;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.new-item-title h3 {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #181D27;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 1.4;
}

.new-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.new-item-logo {
    height: 30px;
}

.new-item-logo img {
    height: 100%;
    width: auto;
}

.new-item-publish {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #414651;
}

.new-item-publish img {
    width: 24px;
    height: 24px;
}

.news-cta {
    margin-top: 40px;
}

/* Owl carousel overrides for news */
.new-wrap.owl-theme .owl-dots {
    margin-top: 24px;
}

.new-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.new-wrap.owl-theme .owl-dots .owl-dot.active span,
.new-wrap.owl-theme .owl-dots .owl-dot:hover span {
    background: #1B49F5;
}

@media (max-width: 979px) {
    .new-item {
        padding: 16px;
    }

    .new-item-title h3 {
        font-size: 18px;
    }

    .news-cta {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .new-item-title h3 {
        font-size: 16px;
    }
}

/* #endregion */

/* #region Process */
.process-cta {
    padding: 32px 0 40px;
}

.process-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-item {
    position: relative;
    letter-spacing: -0.2px;
}

.pi-line-1 {
    position: absolute;
    left: 70px;
    top: 29px;
}

.pi-line-2 {
    position: absolute;
    top: 54px;
    left: 64px;
}

.pi-icon {
    margin: 16px 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(207.98deg, #EEF4FF -4.29%, #D9E6FF 85.03%);
}

.pi-title {
    font-family: Inter SemiBold;
    font-size: 18px;
    padding-bottom: 12px;
}

@media (max-width: 979px) {
    .process-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .process-item {
        flex: 1;
        min-width: 230px;
    }

    .pi-line-1,
    .pi-line-2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .pi-icon {
        margin: 0 0 12px;
    }
}

/* #endregion */

/* #region certificate */
.certificate {
    background: linear-gradient(260.28deg, #BAD2FE -9.23%, #F2F6FF 23.19%, #F2F6FF 33.01%, #FFF7EF 62.07%, #FFE2DD 100.61%, rgba(255, 191, 180, 0.7) 100.63%);
}

.cert-wrap {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    flex: 1;
    background-color: #FFF;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 24px 50px -8px rgba(10, 27, 137, 0.03), 0 4px 8.7px 4px rgba(10, 27, 137, 0.02);
}

.cert-item img {
    max-height: 100%;
}

@media (max-width: 979px) {
    .cert-wrap {
        padding-top: 28px;
        gap: 24px;
    }

    .cert-item {
        flex: unset;
        width: calc(33.33% - 24px);
    }
}

@media (max-width: 767px) {
    .cert-wrap {
        padding-top: 24px;
        gap: 16px;
    }

    .cert-item {
        width: calc(50% - 16px);
    }
}

/* #endregion */

/* #region Prize */
.prize-wrap {
    padding: 40px 60px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.prize-item {
    max-width: 268px;
    margin: 0 auto;
}

.prize-cup {
    aspect-ratio: 267/245;
    max-width: 267px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.prize-item:hover .prize-cup {
    background: url(/meInvoice/images/inbot/bg-circle.png) no-repeat center;
    background-size: cover;
}

.prize-title {
    font-family: Inter Medium;
    font-size: 18px;
    text-align: center;
}

.prize-wrap.owl-carousel .owl-item img {
    object-fit: contain;
    width: auto;
    max-height: 100%;
}

.prize-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2662FF;
}

.prize-wrap.owl-theme .owl-nav {
    margin: 0;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-'] {
    display: none;
    margin: 0;
}

.prize-wrap:hover .owl-nav [class*='owl-'] {
    display: block;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.prize-wrap.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}

.prize-wrap.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

@media (max-width: 979px) {

    .prize .default-subtitle br,
    .prize-title br {
        display: none;
    }

    .prize-wrap {
        padding: 32px 0 0;
    }
}

@media (max-width: 767px) {
    .prize-wrap {
        padding: 24px 0 0;
    }
}

/* #endregion */

/* #region Customer */
.customer-wrap {
    padding-top: 60px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.customer-item {
    width: 296px;
    box-shadow: 0 2px 20px -6px rgba(116, 135, 255, 0.12), 0 12px 46px -4px rgba(10, 27, 137, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.customer-item-head {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #1451E1;
    text-align: center;
}

.customer-item-content {
    padding: 16px 16px 36px;
}

@media (max-width: 979px) {
    .customer-wrap {
        padding-top: 30px;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .customer-wrap {
        padding-top: 24px;
    }

    .customer-item-head {
        font-size: 16px;
    }
}

/* #endregion */

/* #region register */
.register {
    background: url(/meInvoice/images/inbot/bg-register.webp) no-repeat center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
}

.register-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.register .default-title {
    color: #FFF;
    max-width: 630px;
    padding-top: 24px;
}

.register-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.register-desc .default-desc {
    color: #FFF;
    background: url(/meInvoice/images/inbot/ic-check-white.svg) no-repeat top left;
}

.register-form {
    width: 100%;
    max-width: 515px;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    box-shadow: 0 20px 24px -4px rgba(10, 27, 137, 0.04), 0 8px 8px -4px rgba(10, 27, 137, 0.01), 0 3px 3px -1.5px rgba(10, 27, 137, 0.02);
}

.register-form-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    padding: 24px 24px 4px;
}

.register-form-subtitle {
    color: #252B37;
    text-align: center;
    padding: 0 24px;
}

.register-agent {
    position: absolute;
    left: 43%;
    top: 15%;
}

@media (max-width: 1100px) {
    .register-agent {
        display: none;
    }

    .register-wrap {
        gap: 24px;
    }
}

@media (max-width: 979px) {
    .register {
        padding: 50px 0;
    }

    .register-wrap {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .register {
        padding: 30px 0;
    }
}

/* #endregion */

/*#region Question */
.question-wrap {
    margin-top: 40px;
}

.question .panel-group .panel {
    border-radius: 16px;
    border-color: #E9EAEB;
}

.question .panel-group .panel:not(:first-child) {
    margin-top: 20px;
}

.question .panel-default>.panel-heading {
    padding: 24px 64px 12px 24px;
    background-color: #fff;
    border-radius: 24px;
    cursor: pointer;
    background: url(/meInvoice/images/inbot/ic-minus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #2662FF;
}

.question .panel-default>.panel-heading.collapsed {
    padding-bottom: 24px;
    background: url(/meInvoice/images/inbot/ic-plus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    color: #181D27;
}

.answer-text {
    padding: 0 64px 24px 24px;
    color: #414651;
    letter-spacing: -0.2px;
}

.answer-text p {
    display: block;
}

@media (max-width: 979px) {
    .question-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .question-wrap {
        margin-top: 24px;
    }

    .question .panel-group .panel:not(:first-child) {
        margin-top: 16px;
    }

    .question .panel-default>.panel-heading {
        font-size: 14px;
        padding: 16px 24px 8px 16px;
        background-position: top 16px right 0;
    }

    .question .panel-default>.panel-heading.collapsed {
        background-position: top 16px right 0;
        padding-bottom: 16px;
    }

    .answer-text {
        font-size: 14px;
        padding: 0 24px 16px 16px;
    }
}

/*#endregion */