/* -------------------------home---------------------------- */

/* 首頁頭部區 */

.header__hero {
    background-image: url('../images/background.png');
}

.header__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 產品介紹 - 清單 */
.product__list {
    list-style-type: disc;
    li::marker {
        color: var(--primary-500);
        font-size: 20px;
    }
}

/* 核心能力-物件 */
.feature__item {
    padding: 30px 20px;
    gap: 12px;
    width: 400px;
    /* item合併 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media screen and (max-width:768px) {
    .feature__item {
        flex-direction: row;
        padding: 20px 12px;
        .feature__item-image {
            width: 36px;
            height: 36px;

        }
    }
}

/* 核心能力-物件圖片 */
.feature__item-image {
    display: flex;
    width: 100px;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: var(--primary-500);
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
}

.break {
    /* visibility: hidden; */
    flex-basis: 100%;
    width: 0;
    height: 0;
}

/* -------------------------⭣guide page⭣------------------------- */


.header__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 460px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 30px 0px rgba(17, 59, 105, .15) inset;

    .header__banner-heading {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    h1 {
        span {
            color: currentColor;
            display: block;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
        }
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    /* top: -60px; */
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

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

    @media screen and (min-width:1024px) {
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: flex-start;

        .section__heading {
            text-align: left;
            align-items: start;
        }
    }
}

.getstart__step-group {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 40px;

    .getstart__step {
        display: flex;
        align-items: flex-start;
        position: relative;
    }

    .getstart__step-number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        /* 數字定位 */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        /* 圓圈定位 */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        /* 樣式 */
        background-color: var(--primary-50);
        color: var(--primary-500);
        font-size: 24px;
        line-height: 100%;
        font-weight: 600;
    }

    .getstart__step:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 29px;
        bottom: 0;
        width: 2px;
        background-color: var(--primary-100);
    }
}

/* -------------------------⭡guide page⭡------------------------- */
/* -------------------------⭣price page⭣------------------------- */




.point__item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    box-shadow: var(--layer-1);
}

.point__item-tag {
    position: absolute;
    top: -10px;
    /* left: 0; */
    right: 24px;
    width: 32px;
    height: 42px;
    background: var(--primary-500);
    border-radius: 4px 0 0 0 ;
}

.tag-shadow {
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 10px;
    background: var(--primary-700);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.tag-arrow {
    position: absolute;
    bottom: -1px;
    width: 32px;
    height: 12px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}


.pricing__wrapper {
    box-shadow: var(--layer-3);
}

@media screen and (min-width:1024px) {
    .pricing__wrapper {
        display: grid;
        grid-template-columns: 2fr 3fr;
    }
}

.pricing__wrap-line {
    width: 6px;
    height: 100%;
    background: var(--primary-500);
    position: absolute;
    bottom: 0;
    left: 8px;
}

.pricing__block {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid black;
}

.pricing__block-price {
    font-family: Helvetica;
    display: grid;
    align-items: end;
    grid-template-columns: 3fr 1fr 3fr;
    width: 220px;
}

/* -------------------------⭡pricing page⭡------------------------- */
/* ---------------------------⭣accordion⭣-------------------------- */

.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 900px;
}

.accordion {
    width: 100%;
    /* border: none; */
    outline: none;
    border: 1px solid var(--black-20);
    border-radius: 20px;
    box-shadow: var(--layer-1);
    overflow: hidden;
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    cursor: pointer;
    /* padding-left: 20px; */
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
    border-radius: 10px;
    overflow: hidden;
    padding: 24px;
}

.accordion__header-title {
    color: var(--black-80);
    font-size: 20px;
    line-height: 2rem;
    font-weight: 500;
    text-align: left;
    margin-right: 10px;
}

.accordion__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 15px; */
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    /* background: var(--primary-500); */
    color: var(--primary-500);
    font-size: 20px;
    border: 1px solid var(--primary-500);
    border-radius: 50px;
}

.accordion__panel {
    display: none;
    padding: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    height: fit-content;
}

.accordion__panel[aria-hidden="false"] {
    display: block;
    max-height: 800px; /* Set a reasonable max-height for animation */
}

.accordion__panel-content {
    font-size: 18px;
    color: var(--gray-mid);
    margin-bottom: 6px;
    /* margin-right: 52px; */
}

.accordion.active {
    .accordion__header {
        background-color: var(--primary-400);   
    }
    .accordion__header-title {
        color: var(--white-100);
    }
    .accordion__header-icon {
        color: var(--white-80);
        border: 1px solid var(--white-80);
    }
}

/* ---------------------------⭡accordion⭡-------------------------- */