/*#region base */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem;      /* Resets to base font size */
  font-weight: normal;  /* Removes default bolding */
}
@media (min-width: 1100px) {
    .container {
        width: 1310px;
    }
}
.td-page-content p {
    display: none;
}
.icplay.play-video-item {
    cursor: pointer;
}
.icplay {
    width: 48px;
    height: 48px;
    z-index: 999;
    position: relative;
}
.icplay.play-video-item img {
    width: 48px;
    height: 48px;
}

.play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.bg {
    animation: pulse 1.2s ease infinite;
    background: #3dc9f963;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: absolute;
    left: -6px;
    top: -6px;
}

/*#endregion */
/*#region buttons*/

.product-btn-primary {
    min-width: 140px;
    padding: 14px 24px;
    background: linear-gradient(76deg, #1b49f5 0%, #5993ff 100%);
    overflow: unset;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 4px;
    position: relative;
    text-decoration: none;
}

.product-btn-outline {
    border: 2px solid #1b49f5;
    min-width: 150px;
    padding: 12px 24px;
    border-radius: 12px;
    outline: 2px #1b49f5 solid !important;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: linear-gradient(244deg, #fff 10.19%, #f8faff 105.78%);
    text-decoration: none;
}

.product-btn-outline .product-icon-box {
    width: 20px;
    height: 20px;
    overflow: hidden;
    opacity: 1;
    transition: transform 0.3s ease;
    transform: translateX(0);
}

.product-btn-outline:hover .product-icon-box {
    transform: translateX(4px);
}

.product-btn-outline-icon {
    min-width: 140px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    outline-offset: -2px;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 30px -6px rgba(116, 135, 255, 0.05),
        0 8px 30px -4px rgba(10, 27, 137, 0.03);
    text-decoration: none;
}

.product-btn-outline-icon .product-icon-box {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.product-btn-outline-icon:hover .product-icon-box {
    transform: translateX(4px);
}

.product-btn-text-white {
    text-align: center;
    color: white !important;
    font-size: 16px;
    font-family: "Inter SemiBold", sans-serif;
    line-height: 24px;
    word-wrap: break-word;
}

.product-btn-text-brand {
    text-align: center;
    color: #1b49f5;
    font-size: 16px;
    font-family: "Inter SemiBold", sans-serif;
    line-height: 24px;
    word-wrap: break-word;
}

.product-icon-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.product-icon-box {}

.borderMove {
    position: relative;
    overflow: visible;
    display: inline-block;
}

.borderMove>* {
    position: relative;
    z-index: 1;
}

.borderMove::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #22d3ee,
            #4ade80,
            #ff6ec4);
    background-size: 300% 300%;
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.3s ease;
}

.borderMove:hover::before {
    opacity: 1;
    animation: shadowMove 4s linear infinite;
}

@keyframes shadowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.ai-btn {
    outline: none !important;
    opacity: 1 !important;
}

@keyframes aiBtnBorderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.ai-btn:hover {
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #ff6ec4, #7873f5, #4ade80, #22d3ee, #ff6ec4) border-box;
    background-size: 200% 200%;
    animation: aiBtnBorderMove 3s linear infinite;
}

@media (max-width:979px) {
    .product-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.bhxh-btn-primary {
    min-width: 140px;
    padding: 14px 24px;
    background: linear-gradient(236deg, #3DC9F9 11.6%, #02A3EC 98.4%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.bhxh-btn-text-white {
    color: white;
    font-size: 16px;
    font-family: 'Inter SemiBold', sans-serif;
    line-height: 24px;
}

.bhxh-btn-outline-green {
    min-width: 140px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid #3DC9F9;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.line-action:hover {
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #3DC9F9, #7873f5, #02A3EC, #22d3ee, #3DC9F9) border-box;
    background-size: 200% 200%;
    animation: aiBtnBorderMove 3s linear infinite;
    color: unset;
}

.bhxh-btn-text-green {
    font-size: 16px;
    font-family: 'Inter SemiBold', sans-serif;
    line-height: 24px;
    background: linear-gradient(236deg, #3DC9F9 11.6%, #02A3EC 98.4%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bhxh-btn-tertiary {
    min-width: 140px;
    padding: 12px 24px;
    background: transparent;
    border-radius: 12px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;

        min-width: 140px;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(116, 135, 255, 0.05) 0px 8px 30px -6px, rgba(10, 27, 137, 0.03) 0px 8px 30px -4px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.6);
    border-image: initial;
    gap: 4px;
    text-decoration: none;
}

.bhxh-btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.bhxh-btn-outline-green:hover .bhxh-btn-icon,
.bhxh-btn-tertiary:hover .bhxh-btn-icon {
    transform: translateX(4px);
}

@media (max-width: 979px) {

    .bhxh-btn-primary,
    .bhxh-btn-outline-green,
    .bhxh-btn-tertiary {
        width: fit-content;
        justify-content: center;
    }
}

/*#endregion*/
/*#region banner */
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.banner-main-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 32px;
    margin-bottom: 64px;
}

.td-header-wrap .td-header-menu-wrap-full {
    position: relative;
}

.wrap-page-content {
    position: relative;
}

.td-theme-wrap .footer {
    display: none;
}

.td-page-content {
    padding: unset;
}


.title-form-head {
    color: var(--Text-Secondary, #252B37);
    text-align: center;
    font-family: 'Inter SemiBold';
    font-size: 20px;
    font-style: normal;
    line-height: var(--Line-height-m, 28px);
    letter-spacing: var(--Letter-spacing-None, 0);
    margin: 0 auto;
}

.crm-hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
    padding-top: 126px;
    background: url(/sites/amis/images/pages/purchase-agent/bg-banner.webp);
    background-position: center;
    background-size: cover;
    margin-bottom: 96px;
}

.crm-content-wrapper {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.crm-text-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 32px;
}

.crm-heading-group {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.heading-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.crm-title-row {
    display: block;
}

.title-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.crm-title-text {
    text-align: center;
    color: #181D27;
    font-size: 54px;
    font-family: 'Inter Bold', sans-serif;
    word-wrap: break-word;
}

.crm-title-highlight {
    text-align: center;
    font-size: 54px;
    font-family: 'Inter Bold', sans-serif;
    word-wrap: break-word;
    background: var(--Gradient-Base-AI, linear-gradient(66deg, #1B49F5 0.38%, var(--Violet-500, #875BF7) 51.18%, #F969B7 94.86%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.subtitle-text {
    text-align: center;
    color: #252B37;
    font-size: 24px;
    font-family: 'Inter SemiBold', sans-serif;
    word-wrap: break-word;
}

.subtitle-highlight {
    text-align: center;
    font-size: 24px;
    font-family: 'Inter SemiBold', sans-serif;
    word-wrap: break-word;
    background: var(--Gradient-Base-AI, linear-gradient(66deg, #1B49F5 0.38%, var(--Violet-500, #875BF7) 51.18%, #F969B7 94.86%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.subtitle-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/*#endregion */
/*#region stats */
.wrap-bg-main {
    background: linear-gradient(180deg, #FFF6F6 0%, #FFF 54.22%);
}

/*#endregion */
/*#region tooltip-ai-agent */
.tooltip-ai-agent {
    position: absolute;
    top: calc(100% + 8px);
    left: 564%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.subtitle-icon:hover .tooltip-ai-agent {
    opacity: 1;
    visibility: visible;
}

.tooltip-ai-agent-content {
    width: 318px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(10, 27, 137, 0.15);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.tooltip-ai-agent-text {
    width: 294px;
    color: #101828;
    font-size: 12px;
    font-family: Inter;
    line-height: 16px;
    word-wrap: break-word;
}

.tooltip-ai-agent::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 37px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}


.bhxh-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 64px;
}

.bhxh-hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 54px;
}

.bhxh-hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bhxh-hero-title-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
    line-height: 60px;
    font-size: 52px;
}

.bhxh-hero-title {
    text-align: center;
    color: #181D27;
    /* font-size: 54px; */
    font-family: 'Inter Bold', sans-serif;
    /* line-height: 60px; */
    word-wrap: break-word;
}

.bhxh-hero-title-highlight {
  text-align: center;
  font-family: 'Inter Bold', sans-serif;
  word-wrap: break-word;
  background: var(--Gradient-Base-AI, linear-gradient(66deg, #1B49F5 0.38%, var(--Violet-500, #875BF7) 51.18%, #F969B7 94.86%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}
.highlight {
    word-wrap: break-word;
    background: var(--Gradient-Base-AI, linear-gradient(66deg, #1B49F5 0.38%, var(--Violet-500, #875BF7) 51.18%, #F969B7 94.86%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}
.bhxh-hero-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
}

.bhxh-hero-check-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #535862;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.bhxh-hero-check-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bhxh-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 999;
}

@media (max-width: 979px) {
    .bhxh-hero-title-row{
        gap: unset;
    }
    .bhxh-hero-content {
        margin-bottom: 32px;
    }

    .bhxh-hero-title,
    .bhxh-hero-title-highlight {
        font-size: 28px;
        line-height: 38px;
    }

    .bhxh-hero-check-grid {
        grid-template-columns: 1fr;
    }

    .bhxh-hero-cta {
        display: grid;
        justify-items: center;
    }
}

/*#endregion */
/*#region banner-form */
.crm-hero-banner-section {
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    position: relative;
}

.crm-hero-banner-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-hero-banner-image img {
    height: auto;
    border-radius: 16px;
    display: block;
    position: absolute;
    width: 70%;
    bottom: 39px;
    left: -95px;
    top: 0;
}

.form-placeholder-wrapper {
    padding: 3px;
    border-radius: var(--radius-3xl, 24px);
    width: 65%;
    margin-bottom: 96px;
    /* min-height: 500px; */
    position: relative;
    z-index: 2;
    background: var(--STROKE, linear-gradient(43deg, rgba(65, 85, 245, 0.60) -0.05%, var(--Brand-200, rgba(186, 222, 253, 0.60)) 35.11%, var(--Brand-400, rgba(55, 166, 249, 0.60)) 100.81%));
}

.crm-hero-form-placeholder {
    min-height: 400px;
    border-radius: var(--radius-3xl, 24px);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 30px 0 0px 0;
    /* margin-bottom: 48px; */
    min-height: 500px;
}
@media (max-width: 979px) {
    .tooltip-ai-agent::before {
        left: 150px;
    }

    .tooltip-ai-agent {
        width: auto;
        left: -384%;
    }

    .subtitle-icon {
        display: unset;
    }

    .subtitle-highlight {}

    .subtitle-text {
        font-size: 20px;
    }

    .subtitle-row {
        font-size: 23px;
        display: block;
        max-width: 308px;
        text-align: center;
    }

    .crm-hero-banner-image img {
        position: unset;
        width: 100%;
    }

    .crm-hero-container {
        gap: 32px;
        padding-top: 40px;
    }

    .crm-content-wrapper {
        gap: 24px;
    }

    .crm-text-section {
        gap: 24px;
    }

    .crm-heading-group {
        gap: 16px;
    }

    .crm-title-text,
    .crm-title-highlight {
        font-size: 26px;
    }

    .crm-action-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .crm-hero-banner-section {
        grid-template-columns: 1fr;
        gap: 16px;
        flex-direction: column;
        margin-bottom: 48px;
    }

    .form-placeholder-wrapper {
        width: 100%;
        min-width: unset;
        margin-bottom: unset;
    }
}

/*#endregion */

/*#region section-8 */
.register-section {
    background: url(/sites/amis/images/pages/purchase-agent/bg-register.webp) center / cover no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 96px 0px 0px 0;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 750px;
}

.register-section__container {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
}

.register-section__content {
    display: flex;
    justify-content: space-between;
    gap: 54px;
}

.register-section__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
    max-width: 829px;
}

.register-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.register-features-title {
    color: white;
    font-size: 32px;
    font-family: 'Inter Bold', sans-serif;
    line-height: 40px;
}

.register-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.register-feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-feature-icon {
    width: 40px;
    height: 40px;
}

.register-feature-text {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}

.register-section__form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 508px;
    border-radius: 36px;
    background: url(/sites/amis/images/pages/crm-v3/bg-form.webp);
    box-shadow: 0 4px 60px 0 rgba(10, 27, 137, 0.10);
    padding: 30px;
    background-repeat: no-repeat;
    background-size: cover;
}

.register-section__form {
    padding: 38px 0px;
    background: white;
    box-shadow: 24px 24px 100px -12px rgba(0, 82.38, 235.38, 0.50);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 32px;
}

.register-section__form-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.register-section__form-title {
    width: 100%;
    text-align: center;
    color: #27272D;
    font-size: 24px;
    font-family: 'Inter Bold', sans-serif;
    word-wrap: break-word;
}

.register-section__form-subtitle {
    width: 100%;
    text-align: center;
    color: #2563EB;
    font-size: 16px;
    font-family: 'Inter Bold', sans-serif;
    word-wrap: break-word;
}

@media (max-width: 979px) {
    .register-section__container {
        background-size: cover;
        background-position: center;
        padding: 15px;
        padding-top: 20px;
    }

    .register-section {
        padding: 48px 0 0 0;
    }

    .register-section__content {
        flex-direction: column;
        gap: 40px;
    }

    .register-section__features {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .register-section__form-wrapper {
        flex-direction: column;
        padding: unset;
    }

    .register-section__form {
        max-width: 100%;
        padding: 13px;
    }
}

.register-features-container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
}

.register-features-main {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    display: flex;
}

.register-features-title {
    align-self: stretch;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    padding-top: 94px;
}

.register-features-title-text {
    flex: 1 1 0;
    color: white;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
    word-wrap: break-word;
}

.register-features-list {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.register-features-item {
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex;
}

.register-features-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-features-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.register-features-content {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: inline-flex;
}

.register-features-text {
    align-self: stretch;
}

.register-features-text-normal {
    color: white;
    font-size: 16px;
    font-family: Inter;
    line-height: 24px;
    word-wrap: break-word;
}

.register-features-text-bold {
    color: white;
    font-size: 16px;
    font-family: 'Inter Bold';
    line-height: 24px;
    word-wrap: break-word;
}

.register-features-demo-box {
    padding: 16px;
    border-radius: 12px;
    outline: 1px #8EB9FF solid;
    outline-offset: -1px;
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    display: flex;
}

.register-features-demo-item {
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    display: inline-flex;
}

.register-features-demo-item-short {
    max-width: 312px;
}

.register-features-demo-item-long {
    max-width: 437px;
}

.register-features-demo-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-features-demo-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.register-features-demo-content {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    display: inline-flex;
}

.register-features-demo-text {
    align-self: stretch;
    color: white;
    font-size: 16px;
    font-family: Inter;
    line-height: 24px;
    word-wrap: break-word;
}

@media(max-width:979px) {
    .register-features-title-text {
        font-size: 26px;
    }

    .register-features-title-text br {
        display: none;
    }

    .register-features-title {
        padding-top: 0;
    }
}

.register-left {
    padding-top: 24px;
    padding-bottom: 24px;
}

.register-left-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    /* max-width: 564px; */
}

.register-left-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-title-text {
    color: white;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
}

.register-title-highlight {
    color: #FF5B2A;
    background: var(--AI, linear-gradient(76deg, #FF5B2A 0%, #E459E2 65.27%, var(--Violet-600, #7839EE) 130.54%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    width: fit-content;
}

.register-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.register-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.register-item-text {
    color: white;
    font-size: 16px;
    font-family: 'Inter';
    line-height: 24px;
}

.register-demo-box {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #8EB9FF;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.register-demo-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.register-demo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.register-demo-text {
    color: white;
    font-size: 16px;
    font-family: 'Inter SemiBold';
    line-height: 24px;
}

.register-ava {
    max-width: 354px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 42%;
    z-index: 99;
}

@media (max-width: 979px) {
    .register-title-text {
        font-size: 22px;
        line-height: 30px;
    }

    .register-ava {
        max-width: 240px;
        display: none;
    }

    .register-item-text {
        font-size: 16px;
        line-height: 24px;
    }
}

/*#endregion */

.question-wrap {
    margin: 0;
    padding-top: 40px;
    font-size: 18px;
}

.ic-question {
    margin: 0 auto 10px;
}

.question .panel-group .panel {
    border-radius: 16px;
}

.question .panel-group .panel:not(:first-child) {
    margin-top: 15px;
}

.question .panel-default>.panel-heading {
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Inter SemiBold', sans-serif;
    padding-left: 0;
    padding-bottom: 12px;
}

.panel-answer {
    line-height: 1.5;
    font-size: 16px;
}

.panel-answer ul li {
    padding: 0 0 10px 18px;
    position: relative;
    list-style: none;
    margin: 0;
}

.panel-answer ul li::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8c8c8;
    left: 0;
    top: 6px;
}

.panel-answer ul li:last-child {
    padding-bottom: 0;
}

.panel-answer>div:not(:last-child) {
    padding-bottom: 6px;
}

.page-title {
    color: #212121;
    text-align: center;
    font-family: 'Inter Bold', sans-serif;
    font-size: 40px;
    font-style: normal;
}

.section-temp.question {
    padding: 64px 0 96px 0;
}

.section-temp.question .panel-default:has(.panel-collapse.in) {
    border-radius: var(--radius-4xl, 24px);
    border: 1px solid var(--Blue-400, #5993FF);
    background: var(--Base-White, #FFF);
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.section-temp.question .panel-default.active-panel {
    border-radius: var(--radius-4xl, 24px);
    border: 1px solid var(--Blue-400, #5993FF);
    background: var(--Base-White, #FFF);
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.section-temp.question .panel-default:has(.panel-collapse.in) .panel-heading {
    color: var(--Text-Blue, #2662FF);
}

.section-temp.question .panel-default.active-panel .panel-heading {
    color: var(--Text-Blue, #2662FF);
}

@media(max-width:979px) {
    .section-temp.question {
        padding-bottom: 10px
    }

    .question-wrap {
        padding-top: 30px;
        padding-bottom: 10px;
    }

    .page-title {
        font-size: 28px;
    }
}

/*#endregion */
/*#region robot */
.robot {
    position: absolute;
}

img.robot.robot-6 {
    right: -5px;
    bottom: -98px;
}

img.robot.robot-9 {
    bottom: 0;
    left: 45%;
    width: 275px;
}

@media (max-width: 979px) {
    .robot {
        width: 20%;
    }

    img.robot.robot-6 {
        width: 51%;
    }



    img.robot.robot-9 {
        left: 4px;
        bottom: -61px;
        display: none;
    }
}

/*#endregion */

/*#region badge-hot */
.badge-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 4px;
    background: #F04438;
    border-radius: 4px;
    margin-left: 8px;
}

.badge-hot-text {
    color: white;
    font-size: 12px;
    font-family: 'Inter Medium';
    line-height: 18px;
    word-wrap: break-word;
}

/*#endregion */

/*#region ic-action-play */
@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ai-feature-right {
    display: grid;
    grid-template-areas: "stack";
}

.ai-feature-right>* {
    grid-area: stack;
}

.ai-feature-right>img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.ic-action-play {
    display: grid;
    grid-template-areas: "stack";
    place-items: center;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.ic-action-play>* {
    grid-area: stack;
}

.ic-action-play .bg {
    animation: pulse 1.2s ease infinite;
    background: rgba(27, 73, 245, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.ic-action-play .icplay {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ic-action-play .icplay img {
    width: 48px;
    height: 48px;
}

/*#endregion */


/*#region feature-sections*/
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.feature-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-title {
    color: #252B37;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 979px) {

    .dien-tu-hoa-section,
    .ket-noi-bhxh-section,
    .lien-thong-section {
        padding: 48px 10px;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
    }

    .feature-row-reverse .feature-img {
        order: -1;
    }

    .feature-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*#endregion*/
/*#region question*/
.question {
    padding: 96px 0 96px 0;
}

.page-title {
    margin: 0 auto;
    color: #181D27;
    text-align: center;
    font-family: 'Inter Bold', sans-serif;
    font-size: 32px;
    line-height: 40px;
}

.question-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-default {
    padding: 24px;
    background: white;
    border-radius: 24px !important;
    border: 1px solid var(--Border-Second, #E9EAEB);
    padding-bottom: 12px;
}

.panel-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: none;
    border-radius: 0;
    cursor: pointer;
    background-color: #fff !important;
    color: #181D27;
}

.panel-heading-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.panel-number {
    flex-shrink: 0;
    color: #181D27;
    font-family: 'Inter SemiBold', sans-serif;
    font-size: 18px;
    line-height: 24px;
}

.panel-heading .heading3 {
    color: #181D27;
    font-family: 'Inter SemiBold', sans-serif;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.panel-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url(/sites/amis/images/pages/ketoan/ic-dow.webp) center / 12px no-repeat;
}

.panel-heading:not(.collapsed) .panel-icon {
    background-image: url(/sites/amis/images/pages/ketoan/ic-up.webp);
}

.panel-answer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-answer p {
    color: #535862;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    margin: 0;
}

.panel-answer a {
    color: #0D8BEA;
}

.panel-answer li {
    display: block;
    margin-left: 10px;
}

.panel-answer ul li {
    padding: 0 0 10px 18px;
    position: relative;
    list-style: none;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--Text-Tertiary, #535862);
}

.panel-answer ul li::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8c8c8;
    left: 0;
    top: 6px;
}

.panel-answer ul li:last-child {
    padding-bottom: 0;
}

.question .panel-default:has(.panel-collapse.in) {
    border-radius: 24px;
    border-color: #0D8BEA;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.question .panel-default.active-panel {
    border-radius: 24px;
    border-color: var(--Blue-400, #5993FF);
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.question .panel-default:has(.panel-collapse.in) .panel-heading,
.question .panel-default.active-panel .panel-heading {
    align-items: flex-start;
    gap: 16px;
}

.question .panel-default:has(.panel-collapse.in) .panel-heading-content,
.question .panel-default.active-panel .panel-heading-content {
    align-items: flex-start;
}

.question .panel-default:has(.panel-collapse.in) .panel-number,
.question .panel-default:has(.panel-collapse.in) .panel-heading .heading3,
.question .panel-default.active-panel .panel-number,
.question .panel-default.active-panel .panel-heading .heading3 {
    color: var(--Text-Blue, #2662FF);
    color: #0D8BEA;
}

@media (max-width: 979px) {
    .question {
        padding-bottom: 10px;
    }

    .question-wrap {
        margin-top: 30px;
    }

    .page-title {
        font-size: 28px;
    }
}

/*#region hero-surface*/
.section.hero-surface {
    width: 100%;
    min-height: 100%;
    justify-content: flex-start;
    padding: 96px 0 0 0;
    background: #FFF;
}

.section.hero-block-section .container {
    width: 1502px;
    max-width: 100%;
}

.section.hero-surface .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 84px;
    width: 100%;
}

.brand-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    gap: 32px;
}

.brand-card {
    width: 150px;
    height: 84px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.stat-tile {
    height: 118px;
    padding: 22px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.glass {
    border-radius: var(--radius-xl, 16px);
    border: 3px solid var(--stroke23, #FFF);
    background: var(--Base-White, #FFF);
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.stat-value {
    color: #0A0D12;
    font-family: 'Inter Bold', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
}

.stat-label {
    color: #414651;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.hero-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 96px 0;
    border-radius: var(--radius-3xl, 24px);
    background:
        radial-gradient(ellipse 160.56% 394.68% at -8.91% 127.84%, rgba(186, 222, 253, 0.40) 16%, rgba(186, 222, 253, 0.40) 29%, rgba(167, 246, 255, 0.28) 48%, rgba(233, 246, 254, 0.16) 100%),
        radial-gradient(ellipse 188.60% 370.43% at 128.13% -30.71%, rgba(255, 247, 240, 0.40) 0%, rgba(103, 239, 164, 0.20) 37%, rgba(218, 233, 255, 0.08) 59%),
        white;
    overflow: hidden;
}

.hero-block .hero-title {
    text-align: center;
    /* max-width: 860px; */
}

.hero-block-cta {
    justify-content: center;
}

.hero-block-ui {
    width: 100%;
    max-width: 980px;
    position: relative;
}

.hero-block-ui img {
    width: 100%;
    display: block;
}

.hero-block-play {
    position: absolute;
    width: 144px;
    height: 144px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-block-play .play-wrap {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-block-play img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 979px) {
    .hero-block-play {
        width: 80px;
        height: 80px;
    }
}

.hero-block .hero-title {
    text-align: center;
}

.hero-title {
    font-family: 'Inter Bold', sans-serif;
    color: #030712;
    font-size: 32px;
}

.t-strong {
    color: #000;
    font-family: 'Inter Bold', sans-serif;
}

.t-accent {
    /* background: var(--Gradient-Base-AI, linear-gradient(66deg, #1B49F5 0.38%, var(--Violet-500, #875BF7) 51.18%, #F969B7 94.86%)); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-size: 500% auto; */
    /* animation: textShine 5s ease-in-out infinite alternate; */
    font-family: 'Inter Bold';
    font-size: 32px;
    color: #0D8BEA;
}

.hero-panel {
    position: relative;
    width: 100%;
    display: flex;
    gap: 64px;
    justify-content: space-between;
}

.panel-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* max-width: 368px; */
}

.panel-left .bhxh-hero-cta {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text {
    color: #252B37;
    font-size: 16px;
    line-height: 24px;
}

.panel-right {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 720px;
    z-index: 0;
}

.panel-right>a {
    box-shadow: 0 4px 80px 0 rgba(10, 27, 137, 0.12);
    border-radius: var(--radius-3xl, 24px);
}

.video-stack {
    opacity: 1 !important;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-frame {
    box-shadow: 0 4px 80px 0 rgba(10, 27, 137, 0.12);
}

.crm-btn-outline {
    min-width: 140px;
    padding: 14px 24px;
    background: linear-gradient(226deg, #F8FAFF 0%, #EEF4FF 100%);
    overflow: hidden;
    border-radius: 12px;
    outline: 2px #1B49F5 solid !important;
    outline-offset: -2px;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hero-block a.crm-btn-outline {
    width: 319px;
    margin: 0 auto;
}

.crm-btn-text-brand {
    text-align: center;
    color: #1B49F5;
    font-size: 16px;
    font-family: 'Inter SemiBold', sans-serif;
    line-height: 24px;
}

.ai-agent-cta-wrapper {
    width: 100%;
    box-shadow: 0px 12px 24px rgba(3.68, 91.64, 255, 0.25);
    border-radius: 12px;
    outline-offset: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 45px;
    padding: 4px;
    background: linear-gradient(136deg, #CEE5FF, #F8DCFF);
}

.ai-agent-cta-container {
    align-self: stretch;
    box-shadow: 0px 1px 2px rgba(17, 24, 39, 0.05);
    border-radius: 12px;
    outline-offset: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 3px solid var(--Color, #FFF);
}

.ai-agent-btn {
    width: 319px;
    height: 52px;
    min-width: 64px;
    padding-left: 24px;
    padding-right: 24px;
    background: linear-gradient(59deg, #2662FF 0%, #5993FF 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ai-agent-btn-text {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'Inter Bold', sans-serif;
    line-height: 22px;
    word-wrap: break-word;
}

.ai-agent-btn-icon {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.ai-agent-btn-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 979px) {
    .section.hero-surface {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-block {
        padding: 40px 20px 0;
        gap: 24px;
    }

    .t-strong {
        /* font-size: 16px; */
        line-height: 1;
    }

    .section.hero-surface .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }

    .stat-value {
        font-size: 24px;
        line-height: 32px;
    }

    .stat-label {
        font-size: 16px;
        line-height: 22px;
    }

    .hero-title {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .t-accent {
        font-size: 18px;
        line-height: 1;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 10px;
        display: grid;
    }

    .brand-row {
        gap: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brand-card {
        height: auto;
        width: auto;
    }

    .ai-agent-cta-wrapper {
        margin-top: 0;
    }

    .ai-agent-btn {
        width: 100%;
        max-width: 319px;
    }
}

/*#endregion*/

/*#region features-detail-section*/

.features-detail-section {
    padding-top: 96px;
    padding-bottom: 96px;
    /* padding: 80px 0; */
    background: #fff;
    position: relative;
    z-index: 2;
}

.fd-inner {
    display: grid;
    gap: 96px;
}

.fd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    /* position: relative; */
    /* z-index: 2; */
}

.fd-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.fd-content {
    display: grid;
    gap: 32px;
    /* z-index: 6; */
    /* position: relative; */
}

.fd-header {
    display: grid;
    gap: 12px;
}

.fd-label {
    color: #16B364;
    font-size: 20px;
    font-family: 'Inter SemiBold';
    line-height: 28px;
    text-transform: uppercase;
}

.fd-title {
    color: #252B37;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
}

.fd-list {
    display: grid;
    gap: 16px;
}

.fd-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: start;
}

.fd-check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.fd-text {
    color: #414651;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 979px) {
    .features-detail-section {
        padding: 48px 0;
    }

    .fd-inner {
        gap: 48px;
    }

    .fd-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fd-row-reverse .fd-content {
        order: -1;
    }

    .fd-title {
        font-size: 22px;
        line-height: 32px;
    }

    .fd-label {
        font-size: 16px;
        line-height: 24px;
    }
}

/*#endregion */
/*#region connect-section*/

.connect-section {
    padding: 0 0 96px 0;
    background: url(/sites/amis/images/pages/purchase-agent/bg-connect.webp) center / cover no-repeat;
}

.connect-header {
    display: grid;
    gap: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.connect-title {
    color: #000;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
}

.connect-subtitle {
    color: #252B37;
    font-size: 20px;
    font-family: 'Inter';
    line-height: 28px;
}

.connect-cta {
    justify-content: center;
    margin-bottom: 64px;
}

.connect-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

@media (max-width: 979px) {
    .connect-section {
        padding: 0 0 48px 0;
    }

    .connect-title {
        font-size: 22px;
        line-height: 32px;
    }

    .connect-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .connect-cta {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 32px;
    }
}

/*#endregion */

/*#region industry-section*/
.industry-section {
    width: 100%;
    padding: 96px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    background: #fff;
    /* padding-top: 0; */
}

.industry-section__full-width-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-section__container {
    width: 100%;
    max-width: 1272px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.industry-section__header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.industry-section__title {
    color: black;
    font-size: 32px;
    font-family: 'Inter Bold', sans-serif;
    line-height: 48px;
    margin: 0 auto;
}

.industry-section__subtitle {
    color: #374151;
    font-size: 18px;
    line-height: 24px;
    margin: 0 auto;
}

.industry-cards {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.industry-card {
    flex: 1 1 calc(25% - 18px);
    border-radius: 16px;
    box-sizing: border-box;
}

.industry-card__content {
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 50px 60px 100px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    outline-offset: -2px;
    backdrop-filter: blur(35px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0 8px 24px -6px rgba(129, 166, 255, 0.08), 0 12px 32px -6px rgba(141, 141, 141, 0.10);
}

.industry-card__header {
    align-self: stretch;
    height: 40px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #0D8BEA;
}

.industry-card__title {
    color: white;
    font-size: 18px;
    font-family: 'Inter SemiBold', sans-serif;
    word-wrap: break-word;
    letter-spacing: -0.4px;
}

.industry-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
}

.industry-card__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 979px) {
    .industry-card__title {
        font-size: 14px;
    }

    .industry-section {
        padding: 48px 0;
        gap: 32px;
    }

    .industry-section__title {
        font-size: 24px;
        line-height: 40px;
    }

    .industry-section__subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .industry-section__subtitle br {
        display: none;
    }

    .industry-card {
        flex: 1 1 calc(50% - 12px);
    }
}
/*#endregion */

/*#region cta-strip*/
.cta-strip {
    padding: 96px 0;
    padding-top: 0;
}

.cta-strip-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 66px;
    min-height: 221px;
    border-radius: 24px;
    overflow: hidden;
    background: url('/sites/amis/images/pages/purchase-agent/bg-cta.webp') center / cover no-repeat;
    max-width: 1280px;
    margin: 0 auto;
}

.cta-strip-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.cta-strip-title {
    color: white;
    font-size: 32px;
    font-family: 'Inter Bold';
    line-height: 40px;
}

.cta-strip-subtitle {
    color: white;
    font-size: 16px;
    font-family: 'Inter Medium';
    line-height: 24px;
}

.cta-strip-mockup {
    position: absolute;
    right: 553px;
    top: 0;
    width: 250px;
    /* height: 280px; */
    /* overflow: hidden; */
    border-radius: 32px;
    /* opacity: 0.50; */
    pointer-events: none;
    display: none;
}

.cta-strip-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-strip-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    top: 40px;
}

.cta-strip-btn-primary {
    height: 52px;
    padding: 0 24px;
    background: linear-gradient(236deg, #3DC9F9 11.6%, #02A3EC 98.4%);
    box-shadow: 0px 4px 6px -2px rgba(17, 24, 39, 0.05), 0px 12px 16px -4px rgba(17, 24, 39, 0.10);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 16px;
    font-family: 'Inter SemiBold';
    line-height: 22px;
    text-decoration: none;
    white-space: nowrap;
}

.cta-strip-btn-secondary {
    height: 52px;
    padding: 0 24px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3DC9F9 !important;
    font-size: 16px;
    font-family: 'Inter SemiBold';
    line-height: 22px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
}

@media (max-width: 979px) {
    .cta-strip {
        padding: 60px 16px;
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        min-height: unset;
    }

    .cta-strip-mockup {
        display: none;
    }

    .cta-strip-actions {
        flex-wrap: wrap;
        width: 100%;
        position: unset;
        justify-content: center;
    }

    .cta-strip-btn-primary,
    .cta-strip-btn-secondary {
        width: fit-content;
        justify-content: center;
    }
}
/*#endregion*/

/*#region so-hoa-section*/
.section.so-hoa-section {
    padding: 96px 0;
    background: #fff;
}

.so-hoa-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.so-hoa-content {
    display: grid;
    gap: 32px;
}

.so-hoa-title {
    color: #252B37;
    font-size: 32px;
    font-family: 'Inter Bold', sans-serif;
    line-height: 40px;
}

.so-hoa-subtitle {
    color: #535862;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 28px;
    margin-top: -20px;
}

.so-hoa-list {
    display: grid;
    gap: 16px;
}

.so-hoa-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: start;
}

.so-hoa-check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.so-hoa-text {
    color: #414651;
    font-size: 16px;
    line-height: 24px;
}

.so-hoa-visual {
    border-radius: 16px;
    overflow: hidden;
}

.so-hoa-img {
    width: 100%;
    display: block;
}

@media (max-width: 979px) {
    .section.so-hoa-section {
        padding: 48px 0;
    }

    .so-hoa-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .so-hoa-title {
        font-size: 22px;
        line-height: 32px;
    }

    .so-hoa-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}
/*#endregion */

/*#region purchase-flow-section*/
.purchase-flow-section {
    padding: 96px 0;
    background: radial-gradient(ellipse 212% 269% at 83.59% 101.52%, rgba(186,222,253,0.40) 16%, rgba(186,222,253,0.40) 29%, rgba(168,246,255,0.28) 48%, rgba(233,246,254,0.16) 100%),
                radial-gradient(ellipse 189% 370% at 128.13% -30.71%, rgba(103,239,164,0.30) 11%, rgba(218,233,255,0.12) 59%),
                #fff;
}

.purchase-flow-header {
    margin-bottom: 40px;
}

.purchase-flow-title {
    color: #181D27;
    font-size: 32px;
    font-family: 'Inter Bold', sans-serif;
    line-height: 40px;
    text-align: center;
    padding-bottom: 24px;
}

.purchase-flow-features {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 32px;
    justify-content: center;
}

.purchase-flow-feature-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: start;
}

.purchase-flow-feature-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.purchase-flow-feature-text {
    color: #414651;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}

.purchase-flow-main-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

@media (max-width: 979px) {
    .purchase-flow-section {
        padding: 48px 0;
    }

    .purchase-flow-title {
        font-size: 22px;
        line-height: 32px;
    }

    .purchase-flow-features {
        grid-auto-flow: row;
        grid-auto-columns: 1fr;
    }
}
/*#endregion*/