/* content reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-item] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

[data-reveal].is-visible [data-reveal-item] {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    [data-reveal],
    [data-reveal-item] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* banner-section */
.banner-section {
    padding: 98px 0 30px 0;
    height: 100vh;
}

.banner-container {
    height: 100%;
}

.banner-content {
    width: 100%;
    background-color: #1d2d5e;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 60px;
    height: 100%;
}

.banner-left {
    width: 50%;
}

.banner-left h1 {
    color: #fff;
    font-size: 43px;
    text-transform: uppercase;
    font-weight: 600;
}

.banner-left p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 40px;
    font-family: var(--family-font-secondary);
}

.banner-right {
    width: 50%;
}

.banner-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-left .primary-btn {
    background: #3a4f7a;
    color: #ffffff;
    border: 2px solid #3a4f7a;
    box-shadow: 0 4px 15px rgba(58, 79, 122, 0.4),
        0 2px 8px rgba(58, 79, 122, 0.3);
    padding: 10px 30px;
    font-size: 14px;
}

.banner-left .primary-btn:hover {
    background: #4a5f8a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 79, 122, 0.5),
        0 4px 12px rgba(58, 79, 122, 0.4);
    border-color: #4a5f8a;
}

.banner-left .primary-btn::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.banner-left .primary-btn:hover::before {
    width: 300px;
    height: 300px;
}





/* star-project-section */
.star-section {
    padding: 80px 0;
}

.star-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.star-content {
    display: flex;
    align-items: stretch;
    gap: 25px;
    /* flex-wrap: wrap; */
}

.star-item {
    display: flex;
    flex-direction: column;
    /* background-color: var(--section-bg); */
    border-radius: 20px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    overflow: hidden;
}

.star-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.star-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.star-item:hover img {
    transform: scale(1.05);
}

.star-txt {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.star-dec {
    flex: 1;
    height: 100%;
}

.star-logo {
    /* width: 50%; */
    margin-bottom: 15px;
}

.star-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.star-logo h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
}

.star-dec p {
    font-size: 18px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}






/* core-section */
.core-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.core-container>p {
    font-size: 20px;
    font-family: var(--family-font-secondary);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-bottom: 10px;
}

.core-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.core-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
    gap: 50px;
}

.core-item {
    display: flex;
    flex-direction: column;
}

.core-img {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 2px rgba(255, 255, 255, 0.1);
    padding: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
}

.core-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.core-img:hover img {
    transform: scale(1.1);
}

.core-txt {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    flex: 1;
}

.core-txt h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.core-txt p {
    font-size: 15px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}

.core-txt span {
    font-size: 15px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}






/* price-section */
.price-section {
    position: relative;
    padding: 100px 0;
}

.price-container {
    position: relative;
    z-index: 2;
}

.price-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 70px;
}

.price-intro {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.price-intro h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.price-intro p {
    font-size: 17px;
    font-family: var(--family-font-secondary);
    color: #666;
    line-height: 1.6;
}

.price-slider {
    position: relative;
    width: 100%;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    position: relative;
}

.price-card {
    flex: 1 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 60px 36px 40px 36px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(22, 39, 88, 0.06);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(29, 45, 94, 0.9) 0%, rgba(255, 230, 176, 0) 100%);

}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 40px;
}

.price-card h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.price-card-value .amount {
    font-size: 52px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    text-transform: uppercase;
}

.price-card-value .amount.amount--text {
    font-size: 28px;
}

.price-card-value .suffix {
    display: inline-block;
    margin-left: 6px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(62, 73, 106, 0.6);
}

.price-card-value .suffix:empty {
    display: none;
}

.price-card-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--family-font-secondary);
    flex: 1;
}

.price-card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
}

.price-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
}

.price-card .primary-btn {
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.price-card--featured::before {
    display: block;
}

.price-card-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 6px 13px;
    border-radius: 0 10px 0 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #ffe6b0 0%, #ffcc6f 100%);
    color: #1a1a1a;
}

.price-card-addons {
    margin-top: 8px;
    padding-top: 26px;
    border-top: 1px dashed rgba(22, 39, 88, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-card-addons h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(15, 29, 70, 0.8);
}

.price-card-addons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--family-font-secondary);
}

.price-card-addons li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: rgba(22, 32, 60, 0.88);
    line-height: 1.6;
}

.price-card-addons li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 204, 111, 0.9);
}

@media (max-width: 1024px) {
    .price-intro h2 {
        font-size: 36px;
    }

    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .price-section {
        padding: 80px 0 90px;
    }

    .price-headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .price-slider {
        padding: 0 60px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .price-card {
        padding: 36px 28px;
    }

    .price-card-value .amount {
        font-size: 46px;
    }

}






/* 價格對比表格樣式 */
.price-comparison-table-wrapper {
    width: 100%;
    /* overflow-x: auto; */
    margin-top: 40px;
}

.price-comparison-table {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(22, 39, 88, 0.06);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.08);
    overflow: hidden;

    /* position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 20; */
}

.comparison-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: #fff;
    padding: 0 40px;
}

.price-comparison-table-wrapper.is-sticky .comparison-table-header {
    position: fixed;
    top: 97px;
    left: 48px;
    width: calc(100% - 96px);
    z-index: 99;
    padding: 0 40px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
}

.comparison-header-cell {
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-header-cell.comparison-feature-col {
    text-align: left;
    font-size: 18px;
}

.comparison-header-cell.comparison-featured {
    background: linear-gradient(135deg, rgba(29, 45, 94, 0.05) 0%, rgba(255, 230, 176, 0.1) 100%);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.plan-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #ffe6b0 0%, #ffcc6f 100%);
    color: #1a1a1a;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
}

.comparison-table-body {
    display: flex;
    flex-direction: column;
}

.comparison-category {
    border-bottom: 1px solid rgba(22, 39, 88, 0.08);
}

.comparison-category:last-child {
    border-bottom: none;
}

.comparison-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(29, 45, 94, 0.02);
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}

.comparison-table-body .comparison-category:nth-child(odd) .comparison-category-header {
    background: rgba(29, 45, 94, 0.03);
}

.comparison-category-header:hover {
    background: rgba(29, 45, 94, 0.06);
}

.category-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-chevron {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.comparison-category.active .category-chevron {
    transform: rotate(180deg);
}

.comparison-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.comparison-category.active .comparison-category-content {
    max-height: 2000px;
    padding: 0px 40px;
}

.comparison-category.active .comparison-category-header {
    /* background: rgba(29, 45, 94, 0.02); */
    border-bottom: 1px solid rgba(29, 45, 94, 0.02);
}

.comparison-category:last-child.active .comparison-category-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-category:last-child.active .category-title,
.comparison-category:last-child.active .category-chevron {
    color: #fff;
}

.category-chevron {
    width: 12px;
    height: 12px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 14px 0;
    /* border-bottom: 1px solid rgba(22, 39, 88, 0.05); */
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.6;
    font-family: var(--family-font-secondary);
    padding-right: 20px;
}

.comparison-cell {
    text-align: center;
    padding: 8px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-cell svg {
    width: 22px;
    height: 22px;
}

.comparison-cell svg path {
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.comparison-cell.comparison-featured {
    background: rgba(29, 45, 94, 0.02);
}

.comparison-cell span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.checkmark {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.cross-mark {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
}

.cross-mark svg {
    width: 22px;
    height: 22px;
}

.cross-mark svg path {
    fill: #fff;
    transition: all 0.3s ease;
}

.asterisk-mark {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-right: 4px;
}

.comparison-note-row {
    border-bottom: none;
    padding: 4px 0 14px 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
}

.comparison-note-row .comparison-feature {
    padding-right: 0;
}

.comparison-note-cell {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.note-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    display: block;
    text-align: left;
}

.comparison-cell span:not(.checkmark):not(.cross-mark):not(.asterisk-mark) {
    color: #f7c66c;
    font-size: 16px;
    text-align: center;
    text-transform: unset;
    width: 100%;
}


.comparison-category-content.yellow-content {
    background-color: var(--primary-color);
}

.yellow-content .comparison-feature {
    color: #fff;
    font-size: 19px;
}

.yellow-content .asterisk-mark {
    color: #f7c66c;
}

.yellow-content .asterisk-mark svg {
    width: 22px;
    height: 22px;
}

.yellow-content .asterisk-mark svg path {
    fill: #fff;
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .plan-name{
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .price-comparison-table-wrapper.is-sticky .comparison-table-header{
        width: calc(100% - 30px);
        left: 15px;
        top: 70px;
        padding: 0;
    }
}

/* 響應式設計 */
@media screen and (max-width: 992px) {

    .price-comparison-table-wrapper {
        margin-top: 20px;
    }

    .comparison-table-header,
    .comparison-row,
    .comparison-table-footer {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .comparison-header-cell,
    .comparison-feature,
    .plan-name {
        font-size: 14px;
    }

    .comparison-category-header {
        padding: 16px 15px;
    }

    .category-title {
        font-size: 15px;
        font-size: 500;
    }

    .comparison-category-content {
        padding: 0 20px;
    }

    .comparison-category.active .comparison-category-content {
        padding: 0px 15px;
    }

    .price-comparison-table {
        border-radius: 12px;
    }

    /* 移动端：只显示一个 comparison-cell，标题和内容在同一行 */
    .comparison-row {
        grid-template-columns: 2fr 1fr;
        position: relative;
        overflow: hidden;
    }

    .comparison-row .comparison-cell {
        display: none;
    }

    .comparison-row .comparison-cell.active {
        display: block;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .comparison-table-footer {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    /* 移动端：将表头改造成 tab 样式 */
    .comparison-table-header {
        display: flex;
        grid-template-columns: none;
        padding: 0;
        background: transparent;
        gap: 0;
        border-bottom: 2px solid rgba(22, 39, 88, 0.1);
    }

    .comparison-table-header .comparison-feature-col {
        display: none;
    }

    .comparison-table-header .comparison-header-cell {
        flex: 1 auto;
        padding: 16px 15px;
        font-size: 18px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.5);
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .comparison-table-header .comparison-header-cell.active {
        background: #fff;
        border-bottom-color: var(--primary-color);
        font-weight: 600;
    }

    .plan-name {
        font-size: 15px;
    }

    .plan-badge {
        font-size: 9px;
        padding: 3px 6px;
        top: 4px;
        right: 4px;
    }

    .comparison-feature,
    .yellow-content .comparison-feature {
        font-size: 15px;
    }

    .comparison-cell {
        font-size: 16px;
        padding: 6px;
    }

    .comparison-cell svg,
    .yellow-content .asterisk-mark svg {
        width: 15px;
        height: 15px;
    }

    .yellow-content .comparison-note-row {
        grid-template-columns: 1fr;
    }

    .yellow-content .comparison-note-row .comparison-cell:first-child {
        display: none;
    }

    .comparison-cell span:not(.checkmark):not(.cross-mark):not(.asterisk-mark) {
        font-size: 13px;
    }

    .checkmark {
        font-size: 15px;
    }

    .cross-mark {
        font-size: 22px;
    }

    .asterisk-mark {
        font-size: 15px;
    }

    .note-text {
        font-size: 12px;
    }

    .comparison-table-footer {
        padding: 20px 16px;
    }

    .comparison-footer-cell .primary-btn {
        max-width: 100%;
        font-size: 14px;
        padding: 10px 16px;
    }

}

@media (max-width: 520px) {


    .comparison-cell {
        font-size: 14px;
    }

    .cross-mark {
        font-size: 20px;
    }

    .asterisk-mark {
        font-size: 16px;
    }

    .note-text {
        font-size: 12px;
    }
}











/* free-section */
.free-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.free-container>p {
    font-size: 20px;
    font-family: var(--family-font-secondary);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-bottom: 10px;
}

.free-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.free-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 50px;
}

.free-item {
    display: flex;
    flex-direction: column;
}

.free-img {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 2px rgba(255, 255, 255, 0.1);
    padding: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    max-height: 350px;
}

.free-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.free-img:hover img {
    transform: scale(1.1);
}

.free-txt {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    flex: 1;
}

.free-txt h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    /* flex: 1 auto; */
}

.free-txt p {
    font-size: 16px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}





/* contact-section */
.contact-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.contact-content {
    width: 100%;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(29, 45, 94, 0.1);
    padding: 50px;
    gap: 30px;
    background-color: #fff;
}

.contact-left,
.contact-right {
    width: 50%;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-left span {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.8;
    font-weight: 500;
}

.contact-left h1 {
    color: var(--primary-color);
    font-size: 32px;
    text-transform: uppercase;
    margin: 30px 0 50px 0;
}

.contact-left p {
    font-size: 17px;
    font-family: var(--family-font-secondary);
    color: #666;
    line-height: 1.6;
    width: 80%;
}

.contact-response {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;

}

.contact-response-avatars {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 12px;
}

.contact-response-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(26, 39, 88, 0.18);
    background: #fff;
}

.contact-response-avatars img:not(:first-child) {
    margin-left: -14px;
}

.contact-response-status {
    position: absolute;
    right: 0px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(39, 194, 108, 0.35);
}

.contact-response-text {
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.7;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--family-font-secondary);
}

.contact-response-text span svg {
    width: 15px;
    height: 15px;
    transform: rotate(180deg);
}

.contact-form {
    width: 100%;
    background: #f9f9f9;
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-form-body .layui-form-item {
    margin-bottom: 18px;
}

.contact-form-body .layui-input-block {
    margin-left: 0;
}

.contact-form-body .layui-input,
.contact-form-body .layui-textarea {
    border-radius: 10px;
    border: 1px solid rgba(29, 45, 94, 0.08);
    background: #fbfbfd;
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    box-shadow: none;
    height: 50px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-body .layui-input:focus,
.contact-form-body .layui-input:hover,
.contact-form-body .layui-textarea:focus,
.contact-form-body .layui-textarea:hover {
    border-color: rgba(29, 45, 94, 0.4);
    box-shadow: 0 0 0 3px rgba(29, 45, 94, 0.08);
}

.contact-form-body .layui-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.contact-submit-item {
    margin-top: 28px;
}

.contact-submit-btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 12px 24px rgba(29, 45, 94, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    box-shadow: 0 16px 30px rgba(26, 39, 88, 0.28);
    transform: translateY(-1px);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(26, 39, 88, 0.2);
}

.contact-form-body .layui-form-checked[lay-skin=primary] i {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-body .layui-btn+.layui-btn {
    margin-left: 0;
}

.contact-form-body .layui-form-select .layui-input {
    padding-right: 40px;
}

.contact-form-body .layui-form-select .layui-edge {
    right: 18px;
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .contact-left p {
        width: 100%;
    }

    .contact-response {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-response-avatars {
        padding-right: 0;
    }

    .contact-response-text {
        font-size: 15px;
    }
}

@media (max-width: 560px) {

    .contact-form-body .layui-input,
    .contact-form-body .layui-textarea {
        font-size: 15px;
    }

    .contact-submit-btn {
        font-size: 16px;
    }
}

.contact-form-body .layui-form-selected dl {
    top: 55px;
    border-radius: 10px;
    font-family: var(--family-font-secondary);
}

.contact-form-body .layui-form-selectup dl {
    top: auto;
    bottom: 60px;
}

.layui-form-select dl dd.layui-this {
    color: var(--primary-color);
    font-weight: 600;
}



/* faq-section */
.faq-section {
    padding: 100px 0 60px 0;
}

.faq-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    box-shadow: 0 0px 4px rgba(29, 45, 94, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.faq-left {
    width: 40%;
}

.faq-right {
    width: 60%;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.faq-left span {
    text-transform: uppercase;
    font-size: 16px;
    color: #666;
}

.faq-left p {
    font-size: 18px;
    font-family: var(--family-font-secondary);
}


.faq-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-item-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

.faq-item-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--family-font-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span.active {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-item-title span.active svg {
    transform: rotate(180deg);
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content.active {
    max-height: 1500px;
    padding: 15px 0 10px 0;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content p {
    color: #1a1a1a;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
    margin-bottom: 5px;
}

.faq-item-content ul {
    margin-bottom: 10px;
    padding-left: 5px;
}

.faq-item-content ul li {
    color: #1a1a1a;
    font-size: 15px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.faq-item-content ul li span {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.faq-item-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background-color: #1a1a1a;
    border-radius: 50%;
}

.more-ul>ul {
    padding-left: 0;
}

.more-ul>ul>li {
    padding-left: 0;
}

.more-ul>ul>li::before {
    display: none;
}






/* reset-section */
.reset-section {
    /* background-color: var(--section-bg); */
    padding: 60px 0 100px 0;
}

.reset-container>p {
    font-size: 20px;
    font-family: var(--family-font-secondary);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.reset-content {
    gap: clamp(40px, 2vw, 150px);

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    width: 100%;
}

.reset-left {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.reset-left .reset-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-left .reset-img.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.reset-left .reset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* object-fit: contain; */
}

.reset-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.right-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: space-between;
}

.reset-item {
    border-radius: 15px;
    background-color: #fff;
    padding: clamp(15px, 1.2vw, 100px);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 0px 6px rgba(29, 45, 94, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.reset-item.active {
    border: 1px solid var(--primary-color);
}

.reset-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.reset-title h5 {
    font-size: clamp(22px, 1vw, 70px);
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
}

.reset-title img {
    max-width: 20%;
    object-fit: cover;
    max-height: 58px;

    /* width: 10%;
    position: absolute;
    right: 10px;
    top: 10px; */
}

.reset-title img.cbs-logo {
    width: 15%;
}

.reset-title img.gofull-logo {
    width: 10%;
}

.reset-title img.learn-logo {
    width: 13%;
}

.reset-title img.circle-logo {
    width: 10%;
}

.reset-dec {
    margin-top: clamp(15px, 1vw, 80px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.reset-dec p {
    font-size: clamp(14px, 0.8vw, 60px);
    color: #1a1a1a;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: clamp(1.5, 1vw, 1.9);
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}

.reset-dec span {
    font-size: 15px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
}

.reset-dec .btn-content {
    display: none;
}

.reset-dec .btn-content .primary-btn {
    padding: 8px 10px;
    width: 100%;
    font-size: 13px;
    border-radius: 8px;
}

/* @media screen and (min-width: 1700px) {
    .reset-content {
        gap: 60px;
    }

    .reset-item {
        padding: 30px;
    }

    .reset-title h5 {
        font-size: 30px !important;
    }

    .reset-dec p {
        font-size: 22px !important;
        line-height: 1.9;
    }
} */

.reset-dec img {
    display: none;
}

.mobile-accordion-icon {
    display: none;
}


@media screen and (max-width: 992px) {
    .reset-dec .btn-content {
        margin-top: 10px;
        display: block;
    }

    .banner-section {
        padding: 80px 0 60px 0;
        height: calc(100vh - 50px);
    }

    .banner-content {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .banner-left {
        width: 100%;
        order: 2;
    }

    .banner-right {
        width: 83%;
        order: 1;
    }

    .banner-left h1 {
        font-size: 17px;
    }

    .banner-left p {
        font-size: 14px;
        margin: 10px 0;
    }

    .service-intro-section {
        padding: 0;
    }

    /* .contact-section */
    .contact-section {
        padding: 30px 0 !important;
    }

    .contact-content {
        padding: 20px 15px;
    }

    .contact-left span {
        font-size: 18px;
    }

    .contact-left h1 {
        font-size: 30px !important;
        margin: 10px 0 20px 0;
    }

    .contact-left p {
        font-size: 15px !important;
    }

    .contact-response {
        margin-top: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-response-avatars img {
        width: 40px;
        height: 40px;
    }

    .contact-form-body .layui-input,
    .contact-form-body .layui-textarea {
        padding: 10px;
        font-size: 14px;
        border-radius: 5px;
        height: 45px;
    }

    .contact-submit-btn {
        height: 45px;
        font-size: 14px;
    }

    .banner-left .primary-btn {
        font-size: 14px;
        padding: 6px 40px;
    }


    .reset-section {
        padding: 0 0 20px 0;
    }

    .star-title {
        font-size: 36px;
        margin-bottom: 0px;
    }

    .reset-container>p {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .reset-content {
        display: block;
    }

    .right-list {
        gap: 15px;
    }

    .reset-left {
        display: none;
    }

    .reset-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .reset-title {
        flex-wrap: wrap;
        align-items: center;
        padding-right: 20px;
        gap: 0;
        row-gap: 5px;
    }

    .reset-title h5 {
        font-size: 18px;
    }

    .reset-title img {
        width: 35%;
    }

    .reset-title img.cbs-logo {
        width: 17%;
    }

    .reset-title img.gofull-logo {
        width: 12%;
    }

    .reset-title img.learn-logo {
        width: 25%;
    }

    .reset-title img.circle-logo {
        width: 15%;
    }

    .reset-item {
        padding: 15px;
        position: relative;
        border-radius: 10px;
    }

    /* .reset-item::after {
        content: '';
        position: absolute;
        right: 18px;
        top: 45%;
        width: 5px;
        height: 5px;
        border-right: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
        transform: translateY(-50%) rotate(45deg);
        transition: all 0.3s ease;
    }

    .reset-item.active::after {
        transform: translateY(-50%) rotate(-135deg);
    } */

    .mobile-accordion-icon {
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary-color);
        transition: all 0.3s ease;
        position: absolute;
        right: 15px;
    }

    .mobile-accordion-icon svg {
        width: 100%;
        height: 100%;
    }

    .reset-item.active .mobile-accordion-icon {
        transform: rotate(180deg);
    }

    .reset-dec {
        display: block;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
    }

    .reset-dec img {
        display: block;
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .reset-item.active .reset-dec {
        margin-top: 12px;
        max-height: 700px;
        opacity: 1;
    }

    .core-section {
        padding: 30px 0;
    }

    .core-container>p {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .core-title {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .core-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .core-txt {
        margin-top: 20px;
    }

    .price-section {
        padding: 30px 0;
    }

    .price-intro p {
        font-size: 15px;
    }

    .price-intro {
        width: 100%;
        min-width: 100%;
    }

    .price-intro h2 {
        font-size: 30px;
    }

    .price-headline {
        margin-bottom: 20px;
    }

    .price-card {
        padding: 20px;
    }

    .price-slider {
        padding: 0;
    }

    .free-section {
        padding: 30px 0;
    }

    .free-container>p {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .free-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .free-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .free-txt {
        margin-top: 20px;
    }

    .free-txt h3 {
        margin-bottom: 5px;
    }


    /* .faq-section */
    .faq-section {
        padding: 40px 0;
    }

    .faq-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .faq-left p {
        font-size: 16px;
    }

    .faq-right {
        padding: 20px;
    }

    .faq-item-title h3 {
        font-size: 15px;
    }

    .faq-item-title span {
        width: 20px;
        height: 20px;
    }

    [data-reveal],
    [data-reveal-item] {
        opacity: 1 !important;
        transform: none;
    }

    .price-card h3 {
        font-size: 22px;
    }

    .price-card-header {
        margin-bottom: 20px;
        padding-top: 10px;
    }

    .contact-form-body .layui-form-selected dl {
        top: 50px;
    }

    .contact-form-body .layui-form-selectup dl {
        bottom: 50px;
        top: auto;
    }
}


@media (min-width: 768px) and (max-width: 992px) {
    .banner-section {
        padding: 80px 0 60px 0;
        height: auto;
    }
}