:root {
    --color-table-row-border: #0002;
    --color-table-row-even: #1019560e;
    --color-bg-number-hr: #334155;
    --color-border-number-hr: none;


    --color-buyer-hero-stat-bg: rgba(255, 255, 255, 0.92);
    --color-buyer-card: white;
    --color-buyer-faq-border: #0001;

    --shadow-up: 0 16px 48px #0d1b3e24;

    /*
    --color-buyer-guarantee-bg: linear-gradient(90deg, #EFF6FF 0%, #E0E7FF 100%);
    --color-buyer-guarantee-h3: var(--color-heading);
    --color-buyer-process-loader: #ddd;
    --color-buyer-process-loader-bar: #000;
    --color-buyer-summary-1-bg: #F0FDF4;
    --color-buyer-summary-1-border: #15803D;
    --color-buyer-summary-1-color: #15803D;
    --color-buyer-summary-2-bg: #EFF6FF;
    --color-buyer-summary-2-border: #3B82F6;
    --color-buyer-summary-2-color: #3B82F6;
    --color-buyer-summary-3-bg: #FAF5FF;
    --color-buyer-summary-3-border: #A855F7;
    --color-buyer-summary-3-color: #A855F7;
    --color-buyer-name: black;*/
}

:root[data-theme="dark"] {
    --color-table-row-border: #ffffff51;
    --color-table-row-even: none;
    --color-bg-number-hr: none;
    --color-border-number-hr: #fff;

    --color-buyer-hero-stat-bg: rgba(48, 48, 48, 0.92);
    --color-buyer-card: var(--color-forground);
    --color-buyer-faq-border: #ffffff11;

    /*
    --color-buyer-guarantee-bg: linear-gradient(90deg, #1a2540 0%, #1c1e3a 100%);
    --color-buyer-guarantee-h3: #e3e3e3;
    --color-buyer-process-loader: #3a3a3a;
    --color-buyer-process-loader-bar: #9b9b9b;
    --color-buyer-summary-1-bg: #1a2e1f;
    --color-buyer-summary-1-border: #15803D;
    --color-buyer-summary-1-color: #4ade80;
    --color-buyer-summary-2-bg: #1a2540;
    --color-buyer-summary-2-border: #3B82F6;
    --color-buyer-summary-2-color: #60a5fa;
    --color-buyer-summary-3-bg: #231a30;
    --color-buyer-summary-3-border: #A855F7;
    --color-buyer-summary-3-color: #c084fc;
    --color-buyer-name: #e3e3e3; */
}

main {
    padding: 0 !important;

    section {
        margin-bottom: 36px !important;

        .content {
            padding: 0 var(--padding-main);
        }
    }
}

.heroic-section {
    max-width: unset !important;
    width: 100%;
    height: 600px;
    background-color: #0f1428;

    position: relative;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.55;
    }

    .desc {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 100%;
        height: 100%;
        padding: var(--padding-main);
        background: linear-gradient(135deg, rgba(11, 20, 70, 0.6) 0%, rgba(29, 78, 216, 0.5) 100%);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;

        text-align: center;
        color: white;

        span {
            color: var(--color-secondary);
            font-weight: 500;
        }

        h1 {
            font-weight: 600;
            font-size: var(--text-heading1);
            text-align: center;
            color: white;

            span {
                font-weight: 600;
                font-size: var(--text-heading1);
                color: var(--color-secondary);
            }
        }

        p {
            color: var(--color-text-white);
        }

        .desc-boxes {
            display: flex;
            justify-content: center;
            gap: 12px;

            flex-wrap: wrap;

            div {
                width: 200px;
                background-color: var(--color-buyer-hero-stat-bg);
                box-shadow: var(--shadow-card);
                padding: var(--padding-card);
                border-radius: var(--card-radius);

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;


                h2 {
                    font-size: var(--text-heading2);
                    font-weight: 500;
                }

                p {
                    color: var(--color-text);
                }
            }
        }

        .topics {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;

            div {
                flex: 1;
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                background: rgba(255, 255, 255, 0.15);
                padding: var(--padding-main);
                border-radius: var(--card-radius);

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 8px;

                transition: transform .25s, box-shadow .25s;

                &:hover {
                    transform: translateY(-6px);
                    box-shadow: var(--shadow-up);
                }

                b {
                    font-weight: 600;
                }
            }
        }

        .btn-container {
            margin-top: 16px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;

            flex-wrap: wrap;

            a {
                border-radius: var(--box-radius);
                box-shadow: var(--shadow-card);
                padding: var(--padding-button);

                display: flex;
                gap: 8px;
                justify-content: center;
                align-items: center;

                color: white;
                border: 1px solid #fff;

                p {
                    text-align: center;
                    font-weight: 600;
                }

                &:nth-child(1) {
                    border: none;
                    background-color: var(--color-secondary);
                    color: #111;

                    p {
                        color: #111;
                    }

                    svg {
                        fill: #111;
                    }
                }
            }
        }
    }
}


table {
    margin-top: var(--padding-main);
    width: 100%;
    border-collapse: separate;
    /* Changed from collapse */
    border-spacing: 0;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-table-row-border);
    border-radius: var(--card-radius);

    transition: transform .25s, box-shadow .25s;

    &:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-up);
    }

    tr {
        background-color: var(--color-forground);
    }

    tr td:first-child {
        font-weight: 600;
    }

    tr:not(:last-child) {
        border-bottom: 1px var(--color-table-row-border) solid;
    }

    tr:nth-child(even) {
        background-color: var(--color-table-row-even);
    }

    tr:first-child {
        background-color: var(--color-dealflow);
        color: #fff;

        th {
            color: #fff;
            font-weight: 600;

            &:first-child {
                border-top-left-radius: var(--card-radius);
            }

            &:last-child {
                border-top-right-radius: var(--card-radius);
            }
        }
    }

    tr:last-child {
        td {
            &:first-child {
                border-bottom-left-radius: var(--card-radius);
            }

            &:last-child {
                border-bottom-right-radius: var(--card-radius);
            }
        }
    }

    th,
    td {
        color: var(--color-text);
        text-align: left;
        padding: var(--padding-card);
    }

    b {
        font-weight: 600;
    }
}

.bb-vs-section {
    .content {
        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
            text-align: center;
        }
    }
}

.why-thailand {
    .content {
        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        h3 {
            font-size: var(--text-heading3);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        .number-hr {
            background-color: var(--color-bg-number-hr);
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-border-number-hr);
            border-radius: 50%;

            display: flex;
            justify-content: center;
            align-items: center;

            color: #fff;
            font-weight: 600;
        }

        .details {
            margin-top: var(--padding-main);

            width: 100%;
            display: flex;
            flex-direction: column;
            gap: var(--padding-main);

            .detail {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: var(--padding-card);
            }

            b {
                font-weight: 600;
            }

            p {
                color: var(--color-text);
                text-align: center;
            }

            .premiums {
                display: flex;
                justify-content: center;
                gap: var(--padding-card);
                flex-wrap: wrap;

                .premium-desc {
                    flex: 0 0 calc((100% - var(--padding-card) * (3 - 1)) / 3);

                    background-color: var(--color-forground);
                    box-shadow: var(--shadow-card);
                    padding: 24px;
                    border-radius: var(--card-radius);
                    border: 1px solid #00000020;

                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    transition: transform .25s, box-shadow .25s;

                    &:hover {
                        transform: translateY(-6px);
                        box-shadow: var(--shadow-up);
                    }

                    div {
                        font-size: 36px;
                    }

                    b {
                        color: var(--color-heading-black);
                        margin-top: 4px;
                        white-space: nowrap;
                    }

                    p {
                        margin-top: 8px;
                        text-align: center;
                        color: var(--color-text);
                    }

                    /* border-bottom: 5px solid var(--color-primary); */
                }
            }

            .visa-boxes {
                width: 100%;
                display: flex;
                justify-content: center;
                gap: var(--padding-card);
                flex-wrap: wrap;

                .visa {
                    flex: 0 0 calc((100% - var(--padding-card) * (2 - 1)) / 3);

                    background-color: var(--color-forground);
                    box-shadow: var(--shadow-card);
                    border-radius: var(--card-radius);
                    border: 1px solid #00000020;

                    padding: var(--padding-card);
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    transition: transform .25s, box-shadow .25s;

                    &:hover {
                        transform: translateY(-6px);
                        box-shadow: var(--shadow-up);
                    }

                    div {
                        font-size: 36px;
                    }

                    b {
                        color: var(--color-heading-black);
                        margin-top: 4px;
                        white-space: nowrap;
                    }

                    p {
                        margin-top: 8px;
                        text-align: center;
                        color: var(--color-text);
                    }
                }

            }
        }
    }
}

.why-americans {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--padding-main);

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        .number-hr {
            background-color: var(--color-bg-number-hr);
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-border-number-hr);
            border-radius: 50%;

            display: flex;
            justify-content: center;
            align-items: center;

            color: #fff;
            font-weight: 600;
        }

        h3 {
            font-size: var(--text-heading3);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
            text-align: center;
        }

        .detail {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .boxes {
            margin-top: 8px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: var(--padding-card);
            flex-wrap: wrap;

            .box {
                flex: 0 0 calc((100% - var(--padding-card) * (2 - 1)) / 3);

                background-color: var(--color-forground);
                box-shadow: var(--shadow-card);
                border-radius: var(--card-radius);
                border: 1px solid #00000020;

                padding: var(--padding-card);
                display: flex;
                flex-direction: column;
                align-items: center;

                transition: transform .25s, box-shadow .25s;

                &:hover {
                    transform: translateY(-6px);
                    box-shadow: var(--shadow-up);
                }

                .emoji {
                    font-size: 36px;
                }

                .language-emojis {
                    margin-top: 12px;
                    display: flex;
                    gap: 4px;
                    align-items: center;
                }

                .two-arrows {
                    font-size: 28px;
                    font-weight: 600;
                    color: var(--color-incorrect);
                }

                .language-emoji {
                    background-color: #60a5fa;
                    color: white;
                    width: 36px;
                    height: 36px;
                    border-radius: var(--box-radius);
                    font-weight: 600;
                    border-color: #2563EB;
                    border-width: 0 0 3px 3px;
                    border-style: solid;

                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                b {
                    color: var(--color-heading-black);
                    font-weight: 600;
                    margin-top: 4px;
                    white-space: nowrap;
                }

                p {
                    margin-top: 8px;
                    text-align: center;
                    color: var(--color-text);
                }
            }

        }

        .great-recommendation {
            margin-top: 8px;
            width: 100%;
            max-width: 600px;
            padding: var(--padding-main);
            background-color: #fdae26aa;

            border-radius: var(--card-radius);
            box-shadow: var(--shadow-card);

            display: flex;
            align-items: center;
            gap: 8px;

            transition: transform .25s, box-shadow .25s;

            &:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-up);
            }

            div {
                font-size: 36px;
            }

            p {
                text-align: left;
                color: var(--color-heading-black);

                span {
                    font-weight: 600;
                }
            }
        }
    }
}

.why-dealflow {
    .content {
        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        .boxes {
            margin-top: var(--padding-main);

            width: 100%;
            display: flex;
            justify-content: center;
            gap: var(--padding-card);
            flex-wrap: wrap;

            .box {
                flex: 0 0 calc((100% - var(--padding-card) * (3 - 1)) / 3);

                background-color: var(--color-forground);
                box-shadow: var(--shadow-card);
                border-radius: var(--card-radius);
                border: 1px solid #00000020;

                padding: var(--padding-card);
                display: flex;
                flex-direction: column;
                align-items: center;

                transition: transform .25s, box-shadow .25s;

                &:hover {
                    transform: translateY(-6px);
                    box-shadow: var(--shadow-up);
                }

                .emoji {
                    font-size: 36px;
                }

                .language-emojis {
                    margin-top: 12px;
                    display: flex;
                    gap: 4px;
                    align-items: center;
                }

                .two-arrows {
                    font-size: 28px;
                    font-weight: 600;
                    color: var(--color-incorrect);
                }

                .language-emoji {
                    background-color: #60a5fa;
                    color: white;
                    width: 36px;
                    height: 36px;
                    border-radius: var(--box-radius);
                    font-weight: 600;
                    border-color: #2563EB;
                    border-width: 0 0 3px 3px;
                    border-style: solid;

                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                b {
                    color: var(--color-heading-black);
                    font-weight: 600;
                    margin-top: 4px;
                    white-space: nowrap;
                }

                p {
                    margin-top: 8px;
                    text-align: center;
                    color: var(--color-text);
                }
            }

        }
    }
}

.process {
    .content {
        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        .boxes {
            margin-top: var(--padding-main);

            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--padding-card);

            .box {
                background-color: var(--color-forground);
                position: relative;

                box-shadow: var(--shadow-card);
                border-radius: var(--card-radius);
                border: 1px solid #00000020;

                padding: var(--padding-card);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                transition: transform .25s, box-shadow .25s;

                &:hover {
                    transform: translateY(-6px);
                    box-shadow: var(--shadow-up);
                }

                .number {
                    width: 36px;
                    height: 36px;

                    display: flex;
                    justify-content: center;
                    align-items: center;

                    border-radius: 50%;
                    box-shadow: var(--shadow-card);
                    background-color: var(--color-secondary);
                    color: #fff;
                    font-weight: 600;
                }

                .emoji {
                    font-size: 36px;
                }

                b {
                    color: var(--color-heading-black);
                    font-weight: 600;
                    margin-top: 4px;
                    white-space: nowrap;
                }

                p {
                    margin-top: 8px;
                    text-align: center;
                    color: var(--color-text);
                }
            }

        }
    }
}

.case-study {
    .content {
        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            color: var(--color-heading-black);
            text-align: center;
        }

        b {
            font-size: var(--text-heading3);
            font-weight: 600;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
            text-align: center;
        }

        .carousel {
            position: relative;

            .next,
            .prev {
                position: absolute;
                z-index: 20;
                top: 50%;
                left: -20px;
                border: 1px solid var(--color-table-row-border);
                font-size: 20px;
                padding: 12px;
                border-radius: 8px;
                background-color: var(--color-forground);
                box-shadow: var(--shadow-card);
                cursor: pointer;
                outline: none;

                color: var(--color-text-black);

                &.next {
                    left: unset;
                    right: -20px;
                }
            }

            .nav-dots {
                margin-top: 8px;
                position: absolute;
                left: 50%;
                transform: translate(-50%, 0);

                width: min-content;
                display: flex;
                gap: 8px;
                align-items: center;

                .dot {
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    background: var(--color-text);
                    transition: background .25s, transform .25s;
                    cursor: pointer;

                    &.active {
                        background: var(--color-text-white);
                        transform: scale(1.35);
                    }
                }

            }
        }

        .grid-wrap {
            padding: 18px 0 12px 0;
            width: 100%;
            margin-top: 12px;
            gap: 12px;
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            transition: transform .45s cubic-bezier(.4, 0, .2, 1);
        }

        .card {
            flex: 0 0 calc(33.3% - 8px);
            scroll-snap-align: start;
            min-width: 0;

            background-color: var(--color-forground);
            border-radius: 14px;
            border: 1px solid var(--color-table-row-border);
            overflow: hidden;

            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            transition: transform .25s, box-shadow .25s;

            &:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-up);
            }
        }

        .card:nth-child(1) {
            animation-delay: .05s;
        }

        .card:nth-child(2) {
            animation-delay: .12s;
        }

        .card:nth-child(3) {
            animation-delay: .19s;
        }

        .card:nth-child(4) {
            animation-delay: .26s;
        }

        .card:nth-child(5) {
            animation-delay: .33s;
        }

        /* Card image strip */
        .card-img {
            height: 168px;
            display: flex;
            align-items: flex-end;
            padding: 16px;
            position: relative;
            overflow: hidden;

            &::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(to bottom, transparent 30%, #0d1b3eb8 100%);
            }

            .badge {
                position: relative;
                z-index: 1;
                background: var(--color-secondary);
                font-size: 10px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                padding: 4px 10px;
                border-radius: 4px;
            }
        }

        /* Card body */
        .card-body {
            padding: 22px 22px 0;
            flex: 1;

            .industry {
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: var(--color-primary);
                margin-bottom: 8px;
            }

            h2 {
                font-size: 20px;
                line-height: 1.3;
                color: var(--color-heading-black);
                margin-bottom: 10px;
            }

            .desc {
                font-size: 13.5px;
                color: var(--color-text);
                line-height: 1.65;
                margin-bottom: 18px;
                text-align: left;
            }
        }

        /* Stats row */
        .stats {
            margin-top: auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);

            .stat {
                display: flex;
                flex-direction: column;
                justify-content: center;

                background: var(--cream);
                padding: 12px 14px;
                text-align: center;


                .val {
                    font-size: 17px;
                    font-weight: 700;
                    color: var(--color-heading-black);
                    display: block;
                }

                .lbl {
                    font-size: 10px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    color: var(--color-text);
                    margin-top: 2px;
                    display: block;
                }
            }
        }

        /* Tags */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 16px 22px 0;
            height: 84px;

            .tag {
                height: fit-content;
                font-size: 11px;
                font-weight: 500;
                background: rgba(26, 181, 163, .1);
                color: #0d8a7c;
                border-radius: 20px;
                padding: 3px 10px;
            }
        }


        /* Card footer */
        .card-footer {
            padding: 18px 22px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .price-block .price-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-text);
        }

        .price-block .price {
            font-size: 22px;
            font-weight: 900;
            color: var(--color-heading-black);
        }

        .price-block .price sub {
            font-size: 12px;
            font-weight: 400;
            color: var(--muted);
        }

        .btn-view {
            background: var(--navy);
            color: #fff;
            border: none;
            border-radius: 7px;
            padding: 11px 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            letter-spacing: .3px;
            transition: background .2s, transform .15s;
            white-space: nowrap;
        }

        .btn-view:hover {
            background: #1e3a70;
            transform: scale(1.03);
        }

        /* ── Sold ribbon colors ── */
        .img-1 {
            background: linear-gradient(135deg, #1a3a5c 0%, #2a5f8a 100%);
        }

        .img-2 {
            background: linear-gradient(135deg, #1a4a3a 0%, #2a7a5a 100%);
        }

        .img-3 {
            background: linear-gradient(135deg, #3a1a4a 0%, #6a2a8a 100%);
        }

        .img-4 {
            background: linear-gradient(135deg, #4a2a1a 0%, #8a5a2a 100%);
        }

        .img-5 {
            background: linear-gradient(135deg, #1a2a4a 0%, #2a4a8a 100%);
        }

        /* Icon in card image */
        .card-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -58%);
            font-size: 52px;
            opacity: .22;
            z-index: 0;
        }
    }
}



.why-section {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
        }

        p:nth-child(1) {
            display: flex;
            align-items: center;
            gap: 4px;

            background-color: #FEE2E2;
            color: #DC2626;
            font-weight: 500;

            padding: var(--padding-button);
            border-radius: var(--card-radius);
            width: min-content;
            white-space: nowrap;

            svg {
                fill: #DC2626;
            }
        }

        .descs {
            margin: 12px -24px 12px -24px;

            display: flex;
            gap: 24px;
            background: linear-gradient(135deg, #FEE2E2 0%, #FFEDD5 70.71%);
            padding: var(--padding-card);
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-card);

            .left-side {
                width: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                padding: var(--padding-card);

                div {
                    overflow: hidden;
                    width: 100%;
                    aspect-ratio: 4/3;
                    border-radius: var(--card-radius);
                    box-shadow: var(--shadow-card);

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                    }
                }
            }

            .right-side {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 16px;

                width: 50%;

                .desc {
                    width: 100%;
                    padding: var(--padding-card);
                    border-radius: var(--card-radius);

                    display: flex;
                    gap: 12px;
                    align-items: center;

                    svg {
                        width: 52px;
                        height: 52px;
                        background-color: black;
                        padding: 15px;
                        border-radius: 50px;
                    }

                    div {

                        b {
                            font-weight: 600;
                        }

                        p {
                            color: var(--color-text);
                        }
                    }
                }
            }
        }
    }
}

.solution-section {
    .content {
        background: linear-gradient(135deg, #2563EB 0%, #9333EA 70.71%);
        border-radius: var(--card-radius);
        box-shadow: var(--shadow-card);

        padding: var(--padding-main);
        color: white;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
        }

        p {
            text-align: center;
        }

        p:nth-child(1) {
            display: flex;
            align-items: center;
            gap: 4px;

            background: var(--color-secondary);
            color: black;
            font-weight: 500;

            padding: var(--padding-button);
            border-radius: var(--card-radius);
            width: min-content;
            white-space: nowrap;

            svg {
                fill: #DC2626;
            }
        }

        .desc-boxes {
            padding: var(--padding-card);
            width: 100%;

            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;

            div {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;

                border-radius: var(--card-radius);
                background: #FFFFFF1A;

                padding: 32px;

                svg {
                    width: 68px;
                    height: 68px;
                    background-color: black;
                    padding: 15px;
                    border-radius: 12px;
                }

                b {
                    font-weight: 600;
                    font-size: var(--text-heading3);
                }
            }
        }
    }
}

.process-section {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        width: 100%;

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            text-align: center;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
            text-align: center;
        }

        p:nth-child(1) {
            display: flex;
            align-items: center;
            gap: 4px;

            background-color: #DBEAFE;
            color: #2563EB;
            font-weight: 500;

            padding: var(--padding-button);
            border-radius: var(--card-radius);
            width: min-content;
            white-space: nowrap;

            svg {
                fill: #2563EB;
            }
        }

        .process {
            position: relative;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .desc-boxes {
                margin-top: 16px;
                z-index: 2;

                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;

                .box {
                    width: 100%;
                    height: 100%;

                    border-radius: var(--card-radius);
                    background-color: var(--color-buyer-card);
                    box-shadow: var(--shadow-card);

                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 8px;

                    padding: var(--padding-card);

                    text-align: center;

                    div {
                        position: relative;

                        svg {
                            width: 68px;
                            height: 68px;
                            background-color: black;
                            padding: 15px;
                            border-radius: 12px;
                            box-shadow: var(--shadow-card);
                        }

                        p {
                            position: absolute;
                            bottom: 52px;
                            left: 52px;

                            width: min-content;
                            width: 28px;
                            height: 28px;
                            text-align: center;
                            padding-top: 4px;
                            background-color: #FACC15;
                            border-radius: 50px;
                            font-weight: 600;

                            box-shadow: var(--shadow-card);
                        }
                    }

                    b {
                        font-weight: 600;
                        color: var(--color-heading-black);
                    }

                    p:nth-child(2) {
                        color: black;
                    }

                    p:nth-child(4) {
                        display: flex;
                        flex-direction: row;
                        gap: 4px;
                        margin-top: auto;
                    }
                }
            }

            .process-loader {
                position: absolute;

                width: 43%;
                height: 8px;
                background: var(--color-buyer-process-loader);
                border-radius: 5px;
                overflow: hidden;

                div {
                    width: 40px;
                    /* constant size */
                    height: 100%;
                    background: var(--color-buyer-process-loader-bar);
                    position: absolute;
                    animation: slide 5s infinite linear;
                }
            }
        }

        a {
            margin-top: 16px;
            padding: var(--padding-button);
            background: linear-gradient(90deg, #9333EA 0%, #DB2777 100%);


            display: flex;
            gap: 4px;
            color: white;
            border-radius: var(--box-radius);
        }

    }
}

@keyframes slide {
    0% {
        left: -40px;
    }

    100% {
        left: 100%;
    }
}

@keyframes slide-horizontal {
    0% {
        top: -40px;
    }

    100% {
        top: 100%;
    }
}

.trust-and-test-section {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        width: 100%;

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            color: var(--color-heading-black);
        }

        p {
            color: var(--color-text);
            text-align: center;
        }

        .desc-boxes {
            margin-top: 16px;
            width: 100%;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;

            div {
                width: 100%;
                background-color: var(--color-buyer-card);
                padding: var(--padding-card);
                border-radius: var(--card-radius);
                box-shadow: var(--shadow-card);

                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;


                svg {
                    width: 52px;
                    height: 52px;
                    background-color: black;
                    padding: 15px;
                    border-radius: 50px;
                }

                h3 {
                    font-size: var(--text-heading3);
                    font-weight: 600;
                }

                p {
                    color: var(--color-text);
                }
            }
        }

        .guarantee-desc {
            margin-top: 16px;
            width: 100%;
            background: var(--color-buyer-guarantee-bg);

            border-radius: var(--card-radius);
            box-shadow: var(--shadow-card);

            display: flex;
            flex-direction: column;
            gap: var(--padding-card);
            padding: var(--padding-main);

            h3 {
                font-size: var(--text-heading3);
                font-weight: 600;
                color: var(--color-buyer-guarantee-h3);
            }

            p {
                text-align: left;
                display: flex;
                gap: 4px;
                color: var(--color-text);
            }

            svg {
                fill: var(--color-correct);
            }
        }
    }
}

.success-section {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        h2 {
            font-size: var(--text-heading2);
            font-weight: 600;
            color: var(--color-heading-black);

        }

        p {
            color: var(--color-text);
        }

        p:nth-child(1) {
            display: flex;
            align-items: center;
            gap: 4px;

            background-color: #F3E8FF;
            color: #9333EA;

            padding: var(--padding-button);
            border-radius: var(--card-radius);
            width: min-content;
            white-space: nowrap;
        }

        .profile-cards {
            margin-top: 16px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--padding-card);

            .card {
                border-radius: var(--card-radius);
                background-color: var(--color-buyer-card);
                box-shadow: var(--shadow-card);
                padding: var(--padding-card);

                display: flex;
                flex-direction: column;
                gap: var(--padding-card);

                .header {
                    display: flex;
                    gap: var(--padding-card);
                    align-items: center;

                    .avatar {
                        width: 80px;
                        height: 80px;
                        min-width: 80px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        font-weight: 700;
                        font-size: 1.75rem;
                        box-shadow: var(--shadow-card);
                    }

                    b {
                        color: var(--color-buyer-name);
                        font-weight: 600;
                    }

                    p {
                        color: var(--color-text);
                    }

                    svg {
                        fill: var(--color-correct);
                    }
                }

                p {
                    color: var(--color-text);
                }

                .summary {
                    margin-top: auto;

                    width: 100%;
                    padding: var(--padding-card);
                    background: var(--color-buyer-summary-1-bg);
                    border-left: 4px solid var(--color-buyer-summary-1-border);
                    border-radius: var(--card-radius);

                    color: var(--color-buyer-summary-1-color);

                    display: flex;
                    gap: 4px;

                    svg {
                        fill: var(--color-buyer-summary-1-color);
                    }
                }

                .profile-2 {
                    background: var(--color-buyer-summary-2-bg);
                    border-left: 4px solid var(--color-buyer-summary-2-border);
                    color: var(--color-buyer-summary-2-color);

                    svg {
                        fill: var(--color-buyer-summary-2-color);
                    }
                }

                .profile-3 {
                    background: var(--color-buyer-summary-3-bg);
                    border-left: 4px solid var(--color-buyer-summary-3-border);
                    color: var(--color-buyer-summary-3-color);

                    svg {
                        fill: var(--color-buyer-summary-3-color);
                    }
                }
            }
        }

        .desc-boxes {
            margin-top: 16px;
            padding: var(--padding-main);
            border-radius: var(--card-radius);

            display: flex;
            gap: 0 64px;
            text-align: center;

            background-color: white;
            box-shadow: var(--shadow-card);
        }
    }
}

.faq-section {
    background-color: var(--color-background);

    h2 {
        font-size: var(--text-heading2);
        font-weight: bold;
        text-align: center;
        margin-bottom: 8px;
        color: var(--color-heading);
    }

    p {
        text-align: center;
        color: var(--color-text);
    }

    .faq-box {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 16px;
        margin-top: var(--padding-main);

        .faq-item {
            width: 100%;
            border-radius: var(--card-radius);
            background-color: var(--color-background);

            cursor: pointer;

            div {
                background-color: var(--color-buyer-card);
                padding: var(--padding-card);
                /* font-size: var(--text-heading3); */
                border: 1px solid var(--color-buyer-faq-border);
                box-shadow: var(--shadow-card);
                border-radius: var(--box-radius);

                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            h3 {
                font-weight: bold;
                color: var(--color-heading-black);
            }

            svg {
                font-weight: 300;
                fill: var(--color-heading-black);
            }

            p {
                display: none;
                padding: var(--padding-card);
                text-align: left;

                &.show {
                    display: block;
                }
            }
        }
    }
}


@media only screen and (max-width:800px) {
    .heroic-section {
        height: auto;
        min-height: 600px;

        img {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
        }

        .desc {
            position: relative;
            top: unset;
            left: unset;
            transform: none;
            padding: 48px var(--padding-main);
            gap: 16px;
            justify-content: flex-start;

            .desc-boxes div {
                width: 160px;
            }

            .topics div {
                flex: 1 1 calc(50% - 12px);
                min-width: 140px;
            }
        }
    }

    .why-thailand .content .details {
        .premiums {
            .premium-desc {
                flex: 0 0 calc((100% - var(--padding-card) * (1 - 1)) / 1);
            }
        }

        .visa-boxes {
            .visa {
                flex: 0 0 calc((100% - var(--padding-card) * (1 - 1)) / 1);
            }
        }
    }

    .why-americans .content .boxes .box {
        flex: 0 0 calc((100% - var(--padding-card) * (1 - 1)) / 1);
    }

    .why-dealflow .content .boxes .box {
        flex: 0 0 calc((100% - var(--padding-card) * (1 - 1)) / 1);
    }

    .process .content .boxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .case-study .content .carousel .grid-wrap {
        .card {
            flex: 0 0 100%;
        }
    }

    .why-section .content .descs {
        flex-direction: column;

        .left-side {
            padding: 0;
            width: 100%;
        }

        .right-side {
            width: 100%;
        }
    }

    .solution-section .content {
        .desc-boxes {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .process-section .content {
        .process {
            .desc-boxes {
                grid-template-columns: repeat(1, 1fr);
            }

            .process-loader {
                width: 8px;
                height: 50%;

                div {
                    width: 8px;
                    height: 40px;
                    animation: slide-horizontal 3s infinite linear;
                }
            }
        }
    }

    .trust-and-test-section .content {
        .desc-boxes {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .success-section .content {
        .profile-cards {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}