@font-face {
    font-family: 'Inter';
    src: url('/sites/library/fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/sites/library/fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/sites/library/fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/sites/library/fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


.text-gradient-primary {
    background: var(--Gradient-Base-AI, linear-gradient(76deg, var(--Blue-600, #1B49F5) 0%, var(--Violet-600, #7839EE) 62.45%, var(--Red-300, #FDA29B) 130.54%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media screen and (min-width: 1310px) {
    .home-page .container {
        width: 1310px;
        max-width: 1310px;
    }
}


.hero-section {
    background-image: url('/eSign/images/pages/home-v2/bg-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    color: var(--Text-Primary, #181D27);
    text-align: left;
    font-family: Inter Bold;
    font-size: var(--Fontsize-Large-title-Title-Hero, 52px);
    line-height: var(--Line-height-2xxl, 60px);
    letter-spacing: var(--Letter-spacing-None, 0);
    margin: 0 0 32px 0;
}

.hero-checklist {
    padding: 24px 0 0 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    color: var(--Text-Tertiary, #535862);
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: var(--Fontsize-Utility-Text-Bullet-text, 20px);
    line-height: var(--Line-height-s, 24px);
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin: 0;
    width: 100%;
}

.hero-checklist-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}


.product-action-buttons {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.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-text-white {
    text-align: center;
    color: white !important;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    word-wrap: break-word;
}

.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, var(--Base-White, #FFF) 10.19%, var(--Brand-25, #F8FAFF) 105.78%);
    border: 2px solid var(--Gradient-Base-Blue, #1B49F5);
    text-decoration: none;
}

.product-btn-outline .product-icon-box {
    width: 20px;
    overflow: hidden;
    opacity: 1;
    transition: transform 0.3s ease;
    transform: translateX(0);
}

.product-btn-outline:hover .product-icon-box {
    transform: translateX(4px);
}

.hero-block a.product-btn-outline {
    width: 319px;
    margin: 0 auto;
}

.product-btn-outline-icon {
    min-width: 140px;
    padding: 12px 24px 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 var(--Base-Transparens-white-60, rgba(255, 255, 255, 0.60));
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.product-btn-outline-icon .product-icon-box {
    transition: transform 0.3s ease;
}

.product-btn-outline-icon:hover .product-icon-box {
    transform: translateX(4px);
}

.product-btn-outline-icon--quote {
    padding: 14px 24px 14px 24px;
}

.product-btn-text-brand {
    text-align: center;
    color: #1B49F5;
    font-size: 16px;
    font-family: 'Inter', 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 {
    width: 20px;
    height: 20px;
}

.product-icon-arrow {
    width: 24px;
    height: 24px;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: -50px;
}


.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%;
    z-index: 0;
    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%;
    }
}


.home-page .ai-btn {
    outline: none !important;
    border: 2px solid #1B49F5;
    opacity: 1 !important;
    border: 2px solid var(--Gradient-Base-Blue, #1B49F5);
}

@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) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-checklist {
        align-items: center;
        text-align: left;
        justify-content: flex-start;
    }

    .hero-checklist-item {
        text-align: left;
    }

    .product-action-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-image {
        justify-content: center;
        margin-top: 24px;
    }

.hero-image img {
    margin-bottom: 0;
}

    .borderMove {
        width: 100%;
        display: block;
    }

    .product-btn-primary,
    .home-page .ai-btn {
        width: 100%;
        min-width: unset;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-block a.product-btn-outline {
        width: 100%;
    }
}

/* insurance-video-section */
.video-section {
    /* padding: 60px 0; */
}

.insurance-video-section {
    width: 100%;
    padding: 65px 64px;
    background: url(/eSign/images/pages/home-v2/bg-video.webp);
    background-size: cover;
    background-position: top;
    border-radius: 24px;
    display: grid;
    /* justify-content: space-between; */
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    padding-bottom: unset;
    margin-bottom: 40px;
    margin-top: 60px;
    /* add spacing from hero */
}

.insurance-video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
}

.insurance-video-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.insurance-video-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 40px;
    line-height: 48px;
}

.insurance-video-title-highlight {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--Brand-600, #1B49F5);
}

.insurance-video-title-normal {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--Text-Primary, #181D27);
    text-align: center;

    /* Title 1/Bold */
    font-family: Inter;
    font-size: var(--Fontsize-Title-Title-1, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-height-xl, 40px);
    /* 125% */
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
}

.insurance-video-description {
    font-size: 20px;
    font-family: Inter, sans-serif;
    line-height: 26px;
    max-width: 826px;
    text-align: center;
    color: var(--Text-Tertiary, #535862);
    text-align: center;

    /* Subtitle 1/Regular */
    font-family: Inter;
    font-size: var(--Fontsize-Subtitle-1-Subtitle-Regular, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-m, 28px);
    /* 140% */
    letter-spacing: var(--Letter-spacing-None, 0);
}

.insurance-video-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.insurance-video-background {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.icplay,
.bg {
    position: absolute;
}

@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: rgba(27, 73, 245, 0.30);
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.insurance-video-background img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    max-width: 982px;
    cursor: pointer;
}

@media (max-width: 979px) {
    .insurance-video-section {
        flex-direction: column;
        padding: 48px 24px;
        gap: 32px;
        padding-bottom: unset;
        padding-left: 0;
        padding-right: 0;
    }

    .insurance-video-content {
        gap: 32px;
        padding: 0 20px 0 20px;
        text-align: center;
    }

    .insurance-video-header {
        gap: 16px;
    }

    .insurance-video-title {
        font-size: 24px;
        line-height: 32px;
    }

    .insurance-video-description {
        font-size: 16px;
        line-height: 24px;
    }

    .insurance-video-actions {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* dung thu mien phi: full width */
    .insurance-video-actions .product-btn-primary {
        width: 100%;
    }

    /* borderMove wrapper: full width theo container */
    .insurance-video-actions .borderMove {
        width: 100%;
    }

    /* borderMove wrapper: full width theo container */
    .product-action-buttons .borderMove {
        width: 100%;
    }

    /* dang ky tu van + mua ngay: flex:1, cung hang */
    .insurance-video-actions .product-btn-outline,
    .insurance-video-actions .product-btn-outline-icon {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }

    .insurance-video-background {
        width: 100%;
    }

    .insurance-video-background img {
        max-width: 100%;
    }
}

@media screen and (max-width: 979px) {
    .insurance-video-title-normal {
        font-size: 24px;
        line-height: 28px
    }
}

/* end insurance-video-section */

/* --- Connect Section --- */
.connect-section {
    padding: 80px 0;
    padding-bottom: unset;
}

.connect-title {
    color: var(--Text-Primary, #181D27);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-1, 32px);
    font-weight: 700;
    line-height: var(--Line-height-xl, 40px);
    margin-bottom: 40px;
}

.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding-top: 36px;
}

.connect-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px -8px rgba(0, 0, 0, 0.1);
}

.connect-card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.connect-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 1;
    display: none;
}

/* Gradients matching image overlay style */
.connect-card-1 .connect-card-overlay {
    background: linear-gradient(180deg, rgba(235, 224, 255, 0) 0%, rgba(235, 224, 255, 0.8) 50%, #EBE0FF 100%);
}

.connect-card-2 .connect-card-overlay {
    background: linear-gradient(180deg, rgba(224, 242, 255, 0) 0%, rgba(224, 242, 255, 0.8) 50%, #E0F2FF 100%);
}

.connect-card-3 .connect-card-overlay {
    /* background: linear-gradient(180deg, rgba(255, 246, 235, 0) 0%, rgba(255, 246, 235, 0.8) 50%, #FFF6EB 100%); */
}

.connect-card-text {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 2;
    color: var(--Text-Primary, #181D27);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    display: none;
}

.connect-actions {
    margin-top: 0;
    justify-content: center;
}

/* --- Responsive Connect --- */
@media screen and (max-width: 1024px) {
    .connect-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .connect-section {
        padding: 40px 0;
    }

    .connect-cards {
        grid-template-columns: 1fr;
    }

    .connect-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

/* --- Process Section --- */
.process-section {
    padding: 60px 0;
    /* padding-top: 0; */
}

.process-title {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-1, 32px);
    font-weight: 700;
    line-height: var(--Line-height-xl, 40px);
    margin-bottom: 64px;
    color: var(--Text-Primary, #181D27);
}

.process-container {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    width: 100%;
    padding-top: 36px;
}

.process-steps {
    /* flex: 0 0 calc(40% - 24px); */
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 10px;
    width: 40%;
}

.process-line {
    position: absolute;
    left: 36px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: #E4E7EC;
    /* Or #E4F1FF based on image */
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    align-items: flex-start;
}

.step-number {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #E4F1FF;
    color: #1B49F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: Inter, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    aspect-ratio: 1/1;
}

/* User specifics for active point */
.step-item.active .step-number {
    background: linear-gradient(57deg, #2662FF 0%, #5993FF 95.88%);
    color: white;
    border: 5px solid #D9E6FF;
    box-shadow: 0 0 0 6px white;
}

.step-title {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    letter-spacing: 0;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-desc {
    overflow: hidden;
    color: var(--Text-Tertiary, #414651);
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    /* User strictly requested this */

    /* Utility Text/Bullet text */
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.2px;
}

/* Image container */
.process-image-wrap {
    /* flex: 0 0 calc(60% - 24px); */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 60%;
}

.process-image-wrap img {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 48px -12px rgba(16, 24, 40, 0.1);
    transition: opacity 0.3s ease;
}

.process-actions {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

/* --- Responsive Process --- */
@media screen and (max-width: 1024px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
    }

    .process-line {
        left: 36px;
    }

    .process-steps {
        padding-left: 0;
        width: 100%;
        max-width: 600px;
        flex: 1 1 auto;
    }

    .step-desc {
        white-space: normal;
        /* overriding to prevent scrolling breaks on mobile */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .process-image-wrap {
        justify-content: center;
        width: 100%;
        flex: 1 1 auto;
    }
}

@media screen and (max-width: 768px) {
    .process-section {
        padding: 40px 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .process-line {
        left: 20px;
        top: 20px;
        bottom: 20px;
    }

    .step-item.active .step-number {
        border-width: 3px;
        box-shadow: 0 0 0 3px white;
    }

    .process-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

/* --- Forget Risk Section --- */
.forget-risk-section {
    padding: 80px 0;
    background: radial-gradient(38.35% 41.81% at 50% 0%, #ECE2FF 0%, rgba(236, 226, 255, 0.00) 100%), 
                radial-gradient(103.99% 170.48% at 50% 100%, rgba(236, 226, 255, 0.90) 0%, rgba(194, 211, 255, 0.90) 25%, rgba(255, 255, 255, 0.00) 100%), 
                #E8EBFF;
    border-radius: 24px;
    margin-bottom: 80px;
}

.forget-risk-title {
    color: var(--Text-Primary, #181D27);
    text-align: center;
    /* Title 1/Bold */
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin-bottom: 48px;
}

.forget-risk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding-top: 36px;
}

.forget-risk-card {
    background: #FFF;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 12px 24px -4px rgba(16, 24, 40, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forget-risk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.08);
}

.forget-risk-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.forget-risk-card-title {
    color: var(--Text-Primary, #181D27);
    text-align: center;
    /* Title 3/Bold */
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-3, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-height-m, 28px); /* 140% */
    letter-spacing: var(--Letter-spacing-None, 0);
    margin-bottom: 12px;
}

.forget-risk-card-desc {
    color: #000;
    text-align: center;
    /* Body-base/Regular */
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Body-base-Regular, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-s, 24px); /* 150% */
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin: 0;
}

.forget-risk-actions {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

/* --- Responsive Forget Risk --- */
@media screen and (max-width: 1024px) {
    .forget-risk-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .forget-risk-section {
        padding: 40px 20px;
        border-radius: 16px;
    }
    .forget-risk-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
    .forget-risk-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .forget-risk-card {
        padding: 24px 20px;
    }
}

/* --- Partners Section --- */
.partners-section {
    /* padding: 80px 0; */
}

.partners-title {
    color: var(--Text-Primary, #181D27);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-1, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-height-xl, 40px);
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin-bottom: 48px;
}

.partners-box {
    border-radius: 16px;
    border: 4px solid #8EB9FF;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
    background: #FFF;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    margin-bottom: 48px;
    margin-top: 36px;
}

.partner-col {
    display: flex;
    flex-direction: column;
}

.partner-col:not(:last-child) {
    border-right: 1px solid #E4E7EC;
}

.partner-header {
    padding: 32px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 160px;
}

.partner-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.partner-card-title {
    color: var(--Text-Secondary, #252B37);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-4, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-height-s, 24px);
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin: 0;
}

.partner-row {
    padding: 16px 16px;
    border-top: 1px solid #E4E7EC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    gap: 8px;
}

.partner-label {
    color: var(--Text-Tertiary, #535862);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.partner-value {
    color: var(--Text-Primary, #181D27);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.partner-price {
    color: var(--Brand-Primary, #2662FF);
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Body-base-Semibold, 16px);
    font-weight: 600;
    line-height: var(--Line-height-s, 24px);
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
}

.partner-footer {
    padding: 24px 16px 32px;
    border-top: 1px solid #E4E7EC;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.partner-card-btn {
    background: #2662FF;
    color: #FFF;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: Inter, sans-serif;
    transition: background 0.3s;
    width: 120px;
    text-align: center;
}

.partner-card-btn:hover {
    background: #1B49F5;
    color: #fff;
}

.partner-card-link {
    color: #2662FF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: Inter, sans-serif;
}

.partner-card-link:hover {
    text-decoration: underline;
    color: #2662FF;
    
}

.partners-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* --- Responsive Partners --- */
@media screen and (max-width: 1024px) {
    .partners-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-col:nth-child(2) {
        border-right: none;
    }
    .partner-col:nth-child(3), .partner-col:nth-child(4) {
        border-top: 1px solid #E4E7EC;
    }
}

@media screen and (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }
    .partners-title {
        font-size: 24px;
        line-height: 32px;
    }
    .partners-box {
        grid-template-columns: 1fr;
    }
    .partner-col:not(:last-child) {
        border-right: none;
        border-bottom: 4px solid #8EB9FF;
    }
    .partner-col:nth-child(3), .partner-col:nth-child(4) {
        border-top: none;
    }
}

/* --- News Section --- */
.news-section {
    padding: 80px 0;
    padding-top: 30px;
}

.news-title {
    color: var(--Text-Primary, #181D27);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin-bottom: 48px;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    margin-top: 36px;
}

.news-card {
    background: #FFF;
    border-radius: 16px;
    padding: 16px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 12px 24px -4px rgba(16, 24, 40, 0.04);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.08);
    border-radius: var(--radius-3xl, 24px);
    background: var(--Background-Base, #FFF);

/* Shadow/m */
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03) !important;
}

.news-card-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    /* margin-bottom: 24px; */
}

.news-card-title {
    color: var(--Text-Primary, #181D27);
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Subtitle-1-Subtitle-Semibold, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-height-m, 28px); /* 140% */
    letter-spacing: var(--Letter-spacing-None, 0);
    margin-bottom: 24px;
    
    /* Truncation */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* display: -webkit-box; */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 20px 0;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-card-logo {
    height: 24px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    
    color: var(--Text-Tertiary, #535862);
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Body-small-Regular, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-card-date img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.news-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* --- Responsive News --- */
@media screen and (max-width: 1024px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }
    .news-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
    .news-cards {
        grid-template-columns: 1fr;
    }
}

/* --- Register Section --- */
.register-section {
    padding: 80px 0;
    background: url(/eSign/images/pages/home-v2/bg-register.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.register-container {
    display: flex;
    gap: 48px;
    align-items: center;
}

.register-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.register-title {
    color: var(--Text-White, #FFF) !important;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-1, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-height-xl, 40px);
    letter-spacing: var(--Letter-spacing-Default, -0.2px);
    margin-bottom: 16px;
}

.register-desc {
    color: var(--Text-White, #FFF) !important;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Subtitle-1-Subtitle-Regular, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-m, 28px);
    letter-spacing: var(--Letter-spacing-None, 0);
    margin-bottom: 32px;
}

.register-image img {
    /* max-width: 400px; */
    width: 100%;
    height: auto;
}

.register-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.register-form-wrap {
    background: #FFF;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 48px -12px rgba(16, 24, 40, 0.15);
}

.register-form-title {
    color: var(--Text-Secondary, #252B37);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: var(--Fontsize-Title-Title-3, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-height-m, 28px);
    letter-spacing: var(--Letter-spacing-None, 0);
    margin-bottom: 24px;
}

/* --- Responsive Register --- */
@media screen and (max-width: 1024px) {
    .register-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    .register-left {
        align-items: center;
    }
    .register-image img {
        max-width: 300px;
    }
    .register-right {
        justify-content: center;
        width: 100%;
    }
    .register-form-wrap {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .register-section {
        padding: 40px 0;
    }
    .register-title {
        font-size: 24px;
        line-height: 32px;
    }
    .register-desc {
        font-size: 16px;
        line-height: 24px;
    }
    .register-form-wrap {
        padding: 24px 16px;
    }
}

/*#region cc1-panel*/
.cc1-panel {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 24px 32px 32px;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.cc1-panel.is-open {
    display: flex;
}
.cc1-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cc1-product-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
}
.cc1-product-logo-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 30px;
    display: flex;
    align-items: center;
}
.cc1-product-logo {
    max-width: 100%;
    max-height: 24px;
    object-fit: contain;
}
.cc1-product-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cc1-product-name {
    color: #181D27;
    font-size: 16px;
    font-family: Inter SemiBold;
    line-height: 24px;
}
.cc1-product-short {
    color: #717680;
    font-size: 14px;
    font-family: Inter;
    line-height: 18px;
}
.cc1-product-category {
    color: #245FDF;
    font-size: 14px;
    font-family: Inter SemiBold;
    text-transform: uppercase;
    line-height: 20px;
    margin-top: 4px;
}
.cc1-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #2662FF;
    font-size: 14px;
    font-family: Inter SemiBold;
    line-height: 18px;
    align-self: flex-end;
}
.cc1-collapse-btn:hover {
    opacity: 0.8;
}
@media (max-width: 979px) {
    .cc1-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*#endregion*/