@import url("base.css");


/* --- 區塊通用樣式 --- */
html,
body {
        font-family: "Noto Sans TC", "Lato", sans-serif, Arial, Verdana, "微軟正黑體", "Microsoft JhengHei", "新細明體", "PMingLiU", "細明體", "MingLiU" !important;
}

body {
        display: flex;
        flex-direction: column;
}

section,
footer {
        box-sizing: border-box;
        width: 100%;
        padding: 50px 20px;
}

/* --- 區塊通用樣式 --- */



.back_to_top {
        position: fixed;
        z-index: 999;
        right: 60px;
        bottom: 130px;

        visibility: hidden;

        width: 60px;
        height: 60px;

        cursor: pointer;
        transition: all .3s ease;

        opacity: 0;
        background: url(../images/btn_backtotop.png);
        background-position: center;
        background-size: cover;
}
@media screen and (max-width: 1459px) {
        .back_to_top {
                right: 8px;
        }
}
@media screen and (max-width: 670px) {
        .back_to_top {
                width: 40px;
                height: 40px;
        }
}
.back_to_top.visible {
        visibility: visible;

        opacity: 1;
}





.main-content {
        display: flex;
        overflow: hidden;
        flex-direction: column;

        flex-grow: 1;
}



/* --- 主選單樣式 --- */
.fixed-nav {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: row;

        width: 100%;
        height: auto;
        padding: 20px 80px;

        transition: all .3s ease;
        text-align: left;

        background: linear-gradient(0deg, rgba(255, 255, 255, .90) 0%, rgba(255, 255, 255, .60) 100%), linear-gradient(0deg, rgba(255, 255, 255, .00) 30.68%, rgba(255, 255, 255, .40) 100%), linear-gradient(270deg, rgba(255, 255, 255, .00) 94.44%, rgba(255, 255, 255, .40) 100%), linear-gradient(90deg, rgba(255, 255, 255, .00) 91.01%, rgba(255, 255, 255, .40) 100%), linear-gradient(180deg, rgba(255, 255, 255, .00) 0%, rgba(255, 255, 255, .20) 100%);
        box-shadow: 0 8px 28px 0 rgba(0, 0, 0, .10);

        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(20px);
}
.fixed-nav.menu_open {
        border-radius: 0 0 60px 60px;
}
@media screen and (max-width: 800px) {
        .fixed-nav {
                padding: 20px 24px;
        }
}
.logo_allpower {
        display: flex;
        flex-direction: column;

        align-items: flex-start;
        gap: 10px;
        flex-shrink: 0;
}

.logo_allpower h1 {
        width: 182px;
        height: 40px;

        transition: all .3s ease;

        background: url(../images/logo_allpower.png);
        background-position: center;
        background-size: cover;
}
@media screen and (max-width: 680px) {
        .logo_allpower h1 {
                width: 160px;
                height: 35px;
        }
}
.menu_open .logo_allpower h1 {
        width: 300px;
        height: 66px;
}
.fixed-nav ul {
        position: relative;

        display: flex;

        margin: 0;
        padding: 0;

        list-style: none;

        transition: all .3s ease;

        justify-content: flex-end;
        align-items: center;
}
@media screen and (max-width: 680px) {
        .fixed-nav ul {
                margin-right: 40px;

                pointer-events: none;

                opacity: 0;
        }
}
@media screen and (max-width: 677px) {
        .fixed-nav ul {
                display: none;
        }
}
.fixed-nav ul li a {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 150%;

        position: relative;
        z-index: 2;

        display: inline-flex;
        overflow: hidden;
        flex-direction: column;

        height: 24px;
        padding: 0 15px;

        transition: all .3s ease;
        text-decoration: none;
        text-transform: uppercase;

        color: #666;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .4);
}

.fixed-nav ul li a:hover {
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0);
}

.fixed-nav ul li a:hover,
.fixed-nav ul li a:hover i,
.fixed-nav ul li a:hover b {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-style: normal;
        line-height: 150%;

        text-transform: uppercase;

        color: #FFC800;
}

.fixed-nav ul li a.active,
.fixed-nav ul li a.active i,
.fixed-nav ul li a.active b {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-style: normal;
        /*font-weight: 700;*/
        line-height: 150%;

        text-transform: uppercase;

        color: #FFC800;
}

.nav-marker {
        position: absolute;
        z-index: 1;
        bottom: -4px;
        left: 0;

        height: 20px;

        transition: width .3s ease, transform .3s ease, opacity .3s ease;
        transform: translateX(0);
        pointer-events: none;

        opacity: 0;
}

.nav-marker::before {
        position: absolute;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 2px;

        content: "";

        border-radius: 2px;
        background-color: #FFC000;
}

.nav-marker::after {
        position: absolute;
        bottom: -32px;
        left: 50%;

        width: 16px;
        height: 16px;

        content: "";
        transition: transform .3s ease;
        transform: translateX(-50%);

        background: url(../images/nav_option_hover.svg);
}

.nav-marker.active::after {
        transform: translate(-50%, -100%);
}

.fixed-nav:hover .nav-marker {
        opacity: 1;
}

.fixed-nav ul li a i,
.fixed-nav ul li a b {
        display: flex;

        width: 100%;

        transition: transform .3s ease;

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

.fixed-nav ul li a i {
        transform: translateY(0);
}

.fixed-nav ul li a b {
        font-size: 14px;
        /*font-weight: 400;*/

        transform: translateY(0);
}

.fixed-nav ul li a:hover i {
        transform: translateY(-100%);
}

.fixed-nav ul li a:hover b {
        transform: translateY(-100%);
}
.menu_mobile {
        position: absolute;
        top: 20px;
        right: -40px;

        width: 40px;
        height: 40px;

        cursor: pointer;
        transition: all .4s ease;

        opacity: 0;
        background: url(../images/icon_menu.svg) no-repeat center center / contain;
}
@media screen and (max-width: 680px) {
        .menu_mobile {
                right: 24px;

                opacity: 1;
        }
}
.menu_open .menu_mobile {
        top: 32px;

        transform: scale(.1);
        pointer-events: nonoe;

        opacity: 0;
}
.menu_close_mobile {
        position: absolute;
        top: 20px;
        right: -40px;

        width: 40px;
        height: 40px;

        cursor: pointer;
        transition: all .4s ease;
        transform: scale(.1);
        pointer-events: nonoe;

        opacity: 0;
        background: url(../images/icon_menu_close.svg) no-repeat center center / contain;
}
@media screen and (max-width: 680px) {
        .menu_close_mobile {
                right: 24px;
        }
}
.menu_open .menu_close_mobile {
        top: 32px;

        transform: scale(1);
        pointer-events: auto;

        opacity: 1;
}
.mobile_submenu {
        display: flex;
        overflow: hidden;
        flex-direction: column;

        width: 100%;
        height: 0;
        padding: 0;
        margin-top: 0;

        transition: all .8s ease;

        opacity: 0;
        border-top: 1px solid rgba(0, 0, 0, .50);
        border-bottom: 1px dashed rgba(0, 0, 0, .50);

        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-basis: 100%;
}
.menu_open .mobile_submenu {
        overflow: auto;

        height: auto;
        min-height: 1px;
        padding: 24px 0;
        margin-top: 24px;

        opacity: 1;
}
.mobile_submenu a {
        font-family: "Noto Sans TC";
        font-size: 24px;
        font-weight: 900;

        letter-spacing: 9.6px;
        text-transform: uppercase;

        color: #000;
}
.mobile_submenu a.active {
        font-family: "Noto Sans TC";
        font-size: 24px;
        font-weight: 900;

        letter-spacing: 9.6px;
        text-transform: uppercase;

        color: #FFC800;
}

.mobile_submenu_social_media {
        display: flex;
        overflow: hidden;

        width: 100%;
        height: 0;
        margin-top: 0;

        transition: all .3s ease;
        transition: all .8s ease;

        opacity: 0;

        flex-basis: 100%;
        justify-content: center;
        align-items: center;
        gap: 16px;
}
.menu_open .mobile_submenu_social_media {
        overflow: auto;

        height: auto;
        min-height: 1px;
        margin-top: 20px;

        opacity: 1;
}
.mobile_submenu_social_media a {
        position: relative;

        display: flex;

        width: 60px;

        transition: all .3s ease;

        justify-content: center;
        align-items: center;
}
.mobile_submenu_social_media a img {
        position: relative;
        z-index: 1;
}

.mobile_submenu_social_media a:after {
        position: absolute;
        z-index: 9;
        top: 0;
        left: 0;

        width: 60;
        height: 60;

        content: "";
        transition: all .5s ease;

        opacity: 0;
}

.mobile_submenu_social_media a:hover:after {
        opacity: 1;
}
/* --- 主選單樣式 --- */



/* --- 1. hero_header (首屏區塊) --- */
.hero_header {
        display: flex;

        min-height: 100vh;
        padding: 0;

        background: url(../images/background_hero_header.webp);
        background-position: left top;
        background-size: cover;

        align-items: center;
        justify-content: center;
}
.hero-content-wrapper {
        display: flex;

        width: 100%;
        height: 100vh;
}
.hero-right-area {
        position: relative;

        display: flex;

        box-sizing: border-box;
        width: 52%;
        height: 100%;
        padding: 0;

        transition: all .3s ease;

        align-items: center;
        justify-content: center;
}
.hero-left-area {
        position: relative;

        display: flex;

        box-sizing: border-box;
        width: 48%;
        height: 100%;
        padding: 40px;

        transition: all .3s ease;

        align-items: center;
        justify-content: center;
}
.hero-left-area-content {
        display: flex;
        flex-direction: column;

        max-width: 400px;

        text-align: center;

        align-items: center;
}
.hero-left-area-content h1 {
        font-family: Lato;
        font-size: 60px;
        font-weight: 300;

        transition: all .3s ease;
        text-align: left;
        letter-spacing: -1.2px;
        text-transform: uppercase;

        color: #000;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);

        align-self: stretch;
}
.hero-left-area-content p {
        font-family: "Noto Sans TC", sans-serif;
        font-size: 20px;
        font-weight: 300;
        font-style: normal;
        line-height: 1.5;
        line-height: 30px;

        margin: 0 0 40px 0;

        text-align: center;

        color: #000;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);

        align-self: stretch;
}


.hero-left-area-content button {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        line-height: 150%;

        display: flex;

        height: 60px;
        padding: 8px 20px;

        cursor: pointer;
        transition: all .3s ease;
        letter-spacing: 2px;
        text-transform: uppercase;

        color: #000;
        border: 1px solid #F79009;
        border-radius: 4px;
        outline: none;

        justify-content: center;
        align-items: center;
        align-self: stretch;
}

.hero-left-area-content button:hover {
        color: white;
        background-color: #F79009;
}





.slides,
.slides > li {
        height: 100%;
        margin: 0;
        padding: 0;

        list-style: none;
}

.flexslider {
        position: relative;

        overflow: hidden;

        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;

        transition: all .3s ease;

        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .2), 0 10px 10px -5px rgba(0, 0, 0, .1);
}

.flexslider .slides > li {
        position: relative;

        display: block;

        -webkit-backface-visibility: hidden;
}

.flexslider .slides:after {
        line-height: 0;

        display: block;
        visibility: hidden;
        clear: both;

        height: 0;

        content: "\0020";
}

html[xmlns] .flexslider .slides {
        display: block;
}



.static-project-title {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
        line-height: 24px;

        position: absolute;
        bottom: 130px;
        left: 40px;

        transition: all .3s ease;
        text-transform: uppercase;

        color: #666;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);
}



.slideshow_intro {
        position: absolute;
        bottom: 70px;
        left: 40px;

        overflow: hidden;

        height: auto;

        transition: all .3s ease;
}

.slideshow_text_slider {
        position: relative;
}

.slideshow_text_slider li {
        position: absolute;
        top: 0;
        left: 0;

        display: flex;
        visibility: hidden;
        overflow: hidden;

        width: 100%;
        height: 100%;

        transition: opacity .6s ease;

        opacity: 0;

        align-items: flex-start;
}

.slideshow_text_slider li.active {
        position: relative;

        visibility: visible;

        opacity: 1;
}

.slideshow_text_slider p {
        line-height: 1.1;

        display: flex;
        flex-direction: column;

        margin: 0;

        white-space: normal;

        align-self: stretch;
}

.slideshow_text_slider .slide-prefix {
        font-family: "Noto Sans TC";
        font-size: 20px;
        font-weight: 400;

        display: block;

        margin-bottom: .5rem;

        color: #F59E0B;

        align-self: stretch;
}

.slideshow_text_slider .slide-suffix {
        font-family: "Noto Sans TC";
        font-size: 24px;
        font-weight: 400;
        font-style: normal;

        display: block;

        text-transform: uppercase;

        color: #000;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);

        align-self: stretch;
}


/* 導航區塊樣式 */
.custom-navigation {
        position: absolute;
        right: 40px;
        bottom: 40px;

        display: flex;

        align-items: center;
        gap: 1.5rem;
}

.custom-navigation a {
        display: flex;

        width: 44px;
        height: 44px;

        transition: background-color .3s ease;

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

/*.custom-navigation a:hover {
        background-color: rgba(255, 255, 255, .3);
}*/

.custom-navigation img {
        width: 40px;
        height: 40px;
}

.custom-controls-container {
        display: flex;
        display: none;

        margin-left: 1rem;

        gap: .75rem;
}

.dot {
        width: 10px;
        height: 10px;

        cursor: pointer;
        transition: background-color .3s ease, transform .3s ease;

        border-radius: 50%;
        background-color: rgba(0, 0, 0, .3);
}

.dot.active {
        transform: scale(1.2);

        background-color: #10B981;
}


.slides {
        display: flex;

        height: 100%;

        transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.slides li {
        position: relative;

        overflow: hidden;

        width: 100%;
        height: 100%;

        list-style: none;

        flex-shrink: 0;
}

.slide-background {
        width: 100%;
        height: 100%;

        transition: background-image .5s ease, background-color .5s ease;

        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: cover !important;
}

.slide_background_01 {
        background: url(../images/work_sample_pic_01.webp);
        background-position: center right !important;
}

.slide_background_02 {
        background: url(../images/work_sample_pic_02.webp);
}

.slide_background_03 {
        background: url(../images/work_sample_pic_03.webp);
}

.slide_background_04 {
        background: url(../images/work_sample_pic_04.webp);
}






@media (max-width: 1000px) {
        /* 1. 父層框架：解除 100vh 限制，改為由內容支撐高度 */
        .hero_header {
                display: block;

                height: auto;
                min-height: auto;
        }

        /* 2. 容器：改為垂直堆疊，並使用 flex-direction: column-reverse 
          將原本在右邊的 (right-area) 翻轉到最上方 */
        .hero-content-wrapper {
                display: flex;
                flex-direction: column-reverse; /* 關鍵：讓 Right-Area 排到上方 */

                height: auto;
        }

        /* 3. 上方區塊 (原本的右區)：設定為視窗高度 */
        .hero-right-area {
                z-index: 1;

                width: 100%;
                height: calc(100vh - 150px); /* 佔滿全螢幕 */
                min-height: 500px;
        }

        /* 4. 下方區塊 (原本的左區)：高度隨內容自適應 */
        .hero-left-area {
                z-index: 2;

                display: block; /* 改回標準塊級，內容垂直排列 */

                width: 100%;
                height: auto; /* 改為自動高度，不再鎖死 100vh */
                padding: 20px; /* 增加底部 padding 給定位元素空間 */
        }

        /* 5. 調整文字區域內容 */
        .hero-left-area-content {
                max-width: 800px;
                margin: 0 auto; /* 居中 */
        }

        .hero-left-area-content h1 {
                font-size: 42px;

                margin-top: 20px;

                text-align: center;
        }

        .hero-left-area-content p {
                text-align: center;
        }

        .static-project-title {
                display: none;
        }

        .slideshow_intro {
                position: absolute;
                top: -100px;
                bottom: auto;
                left: 20px;

                padding: 12px 16px;

                border-radius: 12px;
                background: rgba(255, 255, 255, .6);

                backdrop-filter: blur(20px);
        }
        .slideshow_text_slider .slide-suffix {
                text-shadow: 1px 1px 0 rgba(255, 255, 255, 0);
        }

        .slideshow_text_slider li {
                justify-content: center;
        }
        .custom-navigation {
                top: -70px;
                right: 20px;
                bottom: auto;
        }
        .hero-left-area-content button {
                display: none;
        }
}
@media screen and (max-width: 800px) {
        .hero-left-area-content h1 {
                font-size: 32px;
        }
}
@media screen and (max-width: 600px) {
        .hero-left-area-content h1 {
                font-size: 24px;
        }
        .hero-left-area-content p {
                font-size: 16px;
        }
}
@media screen and (max-width: 330px) {
        .hero-left-area-content h1 {
                font-size: 24px;
        }
        .hero-left-area-content p {
                font-size: 14px;
        }
}





/* --- 1. hero_header (首屏區塊) --- */



/* --- 2. service (產品服務區塊) --- */
.service {
        display: flex;
        flex-direction: column;

        box-sizing: border-box;
        padding: 80px 60px;

        transition: all .3s ease;

        background-image: url("../images/service_bg.png");
        background-repeat: repeat;
        background-size: 50%;

        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 580px) {
        .service {
                padding: 80px 40px;
        }
}
@media screen and (max-width: 420px) {
        .service {
                padding: 80px 20px;
        }
}
.service-header {
        display: flex;
        flex-direction: column;

        width: 100%;
        margin-bottom: 70px;

        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
}

.service-header h2 {
        font-family: "Lato", sans-serif;
        font-size: 60px;
        font-weight: 300;
        font-style: normal;
        line-height: normal;

        transition: all .3s ease;
        text-align: center;
        letter-spacing: -1.2px;
        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}
@media screen and (max-width: 390px) {
        .service-header h2 {
                font-size: 46px;
        }
}
@media screen and (max-width: 360px) {
        .service-header h2 {
                font-size: 40px;
        }
}
.service-header p {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: normal;

        text-align: center;
        letter-spacing: 1.92px;
        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.service-list {
        position: relative;

        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        /* 保持置中 */

        align-items: flex-start;
}

.service-list:after {
        position: absolute;
        z-index: 1;
        top: -90px;
        bottom: -80px;
        left: 50%;

        width: 0;

        content: "";
        transform: translateX(-50%);

        border-right: 1px dashed rgba(0, 0, 0, .12);
}

.service-list li {
        z-index: 2;

        display: flex;

        min-height: 20vh;

        transition: all .3s ease;

        border: 1px dashed #8A8A8A;
        border-radius: 400px;

        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        gap: 100px;
}
@media screen and (max-width: 1024px) {
        .service-list li {
                border-radius: 120px;
        }
}
@media screen and (max-width: 910px) {
        .service-list li {
                border-radius: 40px;
        }
}
@media screen and (max-width: 860px) {
        .service-list li {
                flex-wrap: wrap;
        }
}
.service-list-nogap {
        gap: 60px !important;
}
@media screen and (max-width: 860px) {
        .service-list li {
                gap: 24px;
        }
        .service-list-nogap {
                gap: 24px !important;
        }
}
.service-list li:nth-child(odd) {
        padding: 0 80px 0 120px;
}

.service-list li:nth-child(even) {
        padding: 0 120px 0 80px;
}
@media screen and (max-width: 1024px) {
        .service-list li:nth-child(odd) {
                padding: 0 40px 0 60px;
        }

        .service-list li:nth-child(even) {
                padding: 0 60px 0 40px;
        }
}
@media screen and (max-width: 910px) {
        .service-list li:nth-child(odd) {
                padding: 0 40px 0 40px;
        }

        .service-list li:nth-child(even) {
                padding: 0 40px 0 40px;
        }
}
@media screen and (max-width: 860px) {
        .service-list li:nth-child(odd) {
                padding: 24px;
        }

        .service-list li:nth-child(even) {
                padding: 24px;
        }
}
@media screen and (max-width: 380px) {
        .service-list li:nth-child(odd) {
                padding: 20px;
        }

        .service-list li:nth-child(even) {
                padding: 20px;
        }
}
.service-list li:nth-child(odd) .service-list-img {
        order: 2;
}

.service-list li:nth-child(odd) .service-list-content {
        order: 1;
}

.service-list li:nth-child(even) .service-list-img {
        order: 1;
}

.service-list li:nth-child(even) .service-list-content {
        order: 2;
}

.service-list-img {
        position: relative;

        display: flex;

        max-width: 520px;
        max-height: 650px;

        transition: all .3s ease;

        justify-content: center;
        align-items: center;
}
@media screen and (max-width: 860px) {
        .service-list-img {
                overflow: hidden;

                max-width: 100%;
                height: 360px;

                border-radius: 20px;

                order: 1 !important;
        }
}
@media screen and (max-width: 380px) {
        .service-list-img {
                height: 240px;
        }
}
.service-list-img-obj01 {
        position: absolute;
        top: 50%;
        left: -100px;

        width: 320px;
        height: auto;

        transition: all .3s ease;
        /*transform: translateY(-50%);*/
        transform: translateY(calc(-50% + 30px));
}
@media screen and (max-width: 950px) {
        .intro_img_right .service-list-img-obj01 {
                top: 50%;
                left: -100px;

                width: 240px;

                transform: translateY(calc(-50% + 30px));
        }
}
@media screen and (max-width: 740px) {
        .intro_img_right .service-list-img-obj01 {
                top: 50%;
                left: -60px;

                width: 200px;

                transform: translateY(calc(-50% + 30px));
        }
}

.service-list-img-obj02 {
        position: absolute;
        right: -100px;
        bottom: 0;

        width: 450px;
        height: 320px;

        transition: all .3s ease;
}

.service-list-img-obj05 {
        position: absolute;
        top: 50%;
        left: -160px;

        width: 485px;
        height: auto;

        transition: all .3s ease;
        transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
        .intro_img_right .service-list-img-obj05 {
                left: -160px;

                width: 400px;

                transform: translateY(-50%);
        }
}
@media screen and (max-width: 800px) {
        .intro_img_right .service-list-img-obj05 {
                left: -120px;

                width: 360px;
        }
}
@media screen and (max-width: 740px) {
        .intro_img_right .service-list-img-obj05 {
                left: -100px;

                width: 320px;
        }
}

.service-list-content {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 450px;

        transition: all .3s ease;

        justify-content: center;
}
@media screen and (max-width: 860px) {
        .service-list-content {
                max-width: 100%;

                order: 2 !important;
        }
}
.service-list-title {
        font-family: "Noto Sans TC";
        font-size: 28px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;

        margin: 0 0 20px 0;

        transition: all .3s ease;

        color: #2A2924;

        align-self: stretch;
}

.service-list-content dl {
        display: flex;
        flex-direction: column;

        padding-top: 24px;

        border-top: 1px solid rgba(0, 0, 0, .12);

        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
}

.service-list-content dt {
        font-family: Arial;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        line-height: normal;

        display: flex;

        letter-spacing: .36px;

        color: #000;

        align-items: center;
        gap: 8px;
        align-self: stretch;
        flex: 1 0 0;
}

.service-list-content dt:before {
        width: 16px;
        height: 16px;

        content: "";

        background: url(../images/arrow_list.svg) no-repeat center center / contain;
}

.service-list-more {
        position: relative;

        display: flex;

        margin: 0 0 60px 0;
        padding-left: 20px;

        transition: all .3s ease;

        align-items: center;
}
@media screen and (max-width: 860px) {
        .service-list-more {
                margin: 0 0 20px 0;
        }
}
.service-list-more:hover {
        padding-left: 30px;
}

.service-list-more i {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 30px;

        position: relative;
        z-index: 2;

        display: flex;

        transition: all .3s ease;
        text-transform: uppercase;

        color: #000;

        gap: 8px;
        align-items: center;
}

.service-list-more:hover i {
        letter-spacing: 10%;
}

.service-list-more i:after {
        width: 20px;
        height: 20px;

        content: "";

        background: url(../images/arrow_more.svg) no-repeat center center / contain;
}

.service-list-more:before {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 0;

        width: 40px;
        height: 40px;

        content: "";
        transition: all .3s ease;
        transform: translateY(-50%);

        border-radius: 20px;
        background-color: #FD0;
}

.service-list-more:hover:before {
        width: 50px;
        height: 50px;

        border-radius: 30px;
}

/* --- 2. service (產品服務區塊) --- */



/* --- 3. works (精選案例) --- */
.works {
        display: flex;
        flex-direction: column;

        padding: 80px 0 40px 0;

        background-color: #FFF;

        align-items: flex-start;
        align-self: stretch;
}
.works_header {
        position: relative;

        display: flex;
        overflow: visible;

        box-sizing: border-box;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        margin-bottom: 130px;
        padding: 40px 0;

        transition: all .3s ease;

        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 1040px) {
        .works_header {
                margin-bottom: 130px;
                padding: 0;
        }
}
.works_header h2 {
        font-family: Lato;
        font-size: 30px;
        font-weight: 500;
        font-style: normal;
        line-height: 40px;

        display: flex;

        width: 200px;
        height: 200px;

        transition: all .3s ease;
        text-align: center;
        letter-spacing: -1.2px;
        text-transform: uppercase;

        color: #000;
        border-radius: 100px;
        background: #B5ED3D;

        flex-shrink: 0;
        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 680px) {
        .works_header h2 {
                font-size: 30px;

                width: 160px;
                height: 160px;
        }
}
@media screen and (max-width: 620px) {
        .works_header h2 {
                font-size: 24px;

                width: 120px;
                height: 120px;
        }
}
@media screen and (max-width: 460px) {
        .works_header h2 {
                font-size: 20px;

                width: 100px;
                height: 100px;
        }
}
@media screen and (max-width: 380px) {
        .works_header h2 {
                font-size: 16px;

                width: 80px;
                height: 80px;
        }
}
.works_title_left {
        position: absolute;
        top: 50%;
        left: 50%;

        width: 550px;
        height: 220px;

        transition: all .3s ease;
        transform: translate(calc(-50% - 360px), calc(-50% - 50px));

        background: url(../images/works_title_left.svg) no-repeat center center / contain;
}

.works_title_right {
        position: absolute;
        top: 50%;
        left: 50%;

        width: 520px;
        height: 220px;

        transition: all .3s ease;
        transform: translate(calc(-50% + 360px), calc(-50% + 30px));

        background: url(../images/works_title_right.svg) no-repeat center center / contain;
}
@media screen and (max-width: 1320px) {
        .works_title_left {
                width: 400px;
                height: 220px;

                transform: translate(calc(-50% - 280px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 400px;
                height: 220px;

                transform: translate(calc(-50% + 300px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 1040px) {
        .works_title_left {
                width: 300px;
                height: 220px;

                transform: translate(calc(-50% - 260px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 300px;
                height: 220px;

                transform: translate(calc(-50% + 260px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 860px) {
        .works_title_left {
                width: 200px;
                height: 120px;

                transform: translate(calc(-50% - 220px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 200px;
                height: 120px;

                transform: translate(calc(-50% + 200px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 680px) {
        .works_title_left {
                width: 200px;
                height: 120px;

                transform: translate(calc(-50% - 180px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 200px;
                height: 120px;

                transform: translate(calc(-50% + 180px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 620px) {
        .works_title_left {
                width: 160px;
                height: 120px;

                transform: translate(calc(-50% - 140px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 160px;
                height: 120px;

                transform: translate(calc(-50% + 140px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 460px) {
        .works_title_left {
                width: 120px;
                height: 120px;

                transform: translate(calc(-50% - 120px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 120px;
                height: 120px;

                transform: translate(calc(-50% + 120px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 380px) {
        .works_title_left {
                width: 100px;
                height: 120px;

                transform: translate(calc(-50% - 100px), calc(-50% - 50px));
        }
        .works_title_right {
                width: 100px;
                height: 120px;

                transform: translate(calc(-50% + 100px), calc(-50% + 30px));
        }
}
@media screen and (max-width: 330px) {
        .works_title_left {
                transform: translate(calc(-50% - 80px), calc(-50% - 50px));
        }
        .works_title_right {
                transform: translate(calc(-50% + 80px), calc(-50% + 30px));
        }
}
.work_list_frame {
        overflow: hidden;

        width: 100%;
}

.work_list {
        display: flex;

        width: max-content;
        margin: 0;
        padding: 0;

        list-style: none;

        animation: workMarquee var(--work-speed, 30s) linear infinite;

        flex-wrap: nowrap;
}
/*.work_list:hover {
        animation-play-state: paused;
}*/
@keyframes workMarquee {
        0% {
                transform: translateX(0);
        }
        100% {
                transform: translateX(-50%);
        }
}
.work_list li {
        flex-shrink: 0;
}
.work_sample {
        position: relative;
}

.work_sample img {
        width: 480px;

        transition: all .3s ease;

        flex-shrink: 0;
}
@media screen and (max-width: 1040px) {
        .work_sample img {
                width: 400px;
        }
}
@media screen and (max-width: 920px) {
        .work_sample img {
                width: 360px;
        }
}
@media screen and (max-width: 620px) {
        .work_sample img {
                width: 280px;
        }
}
.work_sample p {
        font-family: "Noto Sans TC";
        font-size: 24px;
        font-weight: 700;
        line-height: normal;

        position: absolute;
        bottom: 80px;
        /*gap: 0;*/
        left: 60px;

        display: inline-flex;
        flex-direction: column;

        transition: all .3s ease;

        color: #2E2E2E;

        align-items: flex-start;
}
@media screen and (max-width: 1040px) {
        .work_sample p {
                font-size: 24px;

                left: 50px;

                color: #2E2E2E;
        }
}
@media screen and (max-width: 920px) {
        .work_sample p {
                font-size: 24px;

                bottom: 130px;
                left: 40px;

                color: #2E2E2E;
        }
}
@media screen and (max-width: 620px) {
        .work_sample p {
                font-size: 16px;

                bottom: 44px;
                left: 32px;

                color: #2E2E2E;
        }
}
.work_sample p i {
        font-family: "Noto Sans TC";
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        line-height: normal;

        transition: all .3s ease;

        color: #8E8E8E;

        align-self: stretch;
}
@media screen and (max-width: 620px) {
        .work_sample p i {
                font-size: 14px;
        }
}
/* --- 3. works (精選案例) --- */


/* --- 4. partners (合作夥伴) --- */
.partners {
        position: relative;

        display: flex;
        flex-direction: column;

        box-sizing: border-box;
        padding: 120px 60px 40px 60px;

        transition: all .3s ease;

        background-color: #FAFAFA;

        align-items: center;
        justify-content: center;
        gap: 24px;
}
@media screen and (max-width: 570px) {
        .partners {
                padding: 120px 40px 40px 40px;
        }
}
.partners_header {
        display: flex;
        flex-direction: column;

        width: 100%;

        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
}

.partners_header h2 {
        font-family: "Lato", sans-serif;
        font-size: 60px;
        font-weight: 300;
        font-style: normal;
        line-height: normal;

        transition: all .3s ease;
        text-align: center;
        letter-spacing: -1.2px;
        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}
@media screen and (max-width: 390px) {
        .partners_header h2 {
                font-size: 46px;
        }
}
@media screen and (max-width: 360px) {
        .partners_header h2 {
                font-size: 40px;
        }
}
.partners_header p {
        font-family: "Noto Sans TC";
        font-size: 20px;
        font-weight: 300;
        font-style: normal;
        line-height: 30px;
        /* 150% */

        text-align: center;

        color: #000;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);

        align-self: stretch;
}

.partners_list_frame {
        position: relative;
        z-index: 9;

        display: block;
        overflow: hidden;

        width: 100%;
        max-width: 1280px;
        padding: 40px 0;

        background: #FAFAFA;
}

.partners_list_frame_shadow {
        position: absolute;
        z-index: 1;
        right: 120px;
        bottom: 130px;
        left: 120px;

        max-width: 1200px;
        height: 40px;
        margin-right: auto;
        margin-left: auto;
        /*opacity: 1;*/

        background: linear-gradient(90deg, #44FF9A -.55%, #44B0FF 22.86%, #8B44FF 48.36%, #F64 73.33%, #EBFF70 99.34%);

        filter: blur(30px);
}

.partners_list_frame:before,
.partners_list_frame:after {
        position: absolute;
        right: 0;
        left: 0;

        width: 100%;
        height: 4px;

        content: "";

        border-top: 1px solid rgba(0, 0, 0, .50);
        border-bottom: 1px solid rgba(0, 0, 0, .50);
}

.partners_list_frame:before {
        top: 0;
}

.partners_list_frame:after {
        bottom: 0;
}
.partners_list {
        display: flex;

        width: max-content;
        margin: 0;
        padding: 0;

        list-style: none;

        animation: marquee var(--speed, 20s) linear infinite;

        align-items: center;
        gap: 60px;
}

.partners_list li {
        display: flex;

        flex-shrink: 0;
        align-items: center;
}

.partners_list li img {
        max-width: 200px;
        height: 60px;
}

.partners_list_cover_left,
.partners_list_cover_right {
        position: absolute;
        z-index: 3;
        top: 4px;
        bottom: 4px;

        width: 200px;

        content: "";
}

@keyframes marquee {
        0% {
                transform: translateX(0);
        }

        100% {
                transform: translateX(-50.05%);
        }
}

.scrolling {
        animation: marquee 30s linear infinite;
}

.partners_list_frame:hover .partners_list {
        animation-play-state: paused;
}



.partners_list_cover_left {
        left: 0;

        background: linear-gradient(90deg, #FAFAFA 0%, rgba(250, 250, 250, .00) 100%);
}

.partners_list_cover_right {
        right: 0;

        background: linear-gradient(270deg, #FAFAFA 0%, rgba(250, 250, 250, .00) 100%);
}

/* --- 4. partners (合作夥伴) --- */



/* --- 5. team (我們的團隊) --- */
.team {
        position: relative;

        overflow: hidden; /* 防止橫向內容撐破網頁 */

        width: 100%;

        background-image: url("../images/team_bg.webp");

        scroll-margin-top: 80px;
}
.team_sticky_wrapper {
        position: sticky;
        top: 0;
        /*height: 100vh;*/

        display: flex;
        overflow: hidden;

        width: 100%;

        align-items: center;
}
.team_list_frame {
        overflow-x: scroll;
        overflow-y: hidden;

        width: 100%;
        padding-bottom: 20px;

        scrollbar-width: none;
        -ms-overflow-style: none;
}
.team_list_frame::-webkit-scrollbar {
        display: none;
}
.team_list {
        display: flex;

        padding: 50px 40px;

        flex-wrap: nowrap;
        gap: 60px;
}
.team_list li {
        flex-shrink: 0;
}

.team_title {
        width: 100px;
}

.team_member_frame {
        position: relative;

        width: 240px;
        height: 540px;

        border: 1px solid #1F2326;
        border-radius: 12px 0 0 0;
        background: rgba(255, 255, 255, .2);
        box-shadow: 8px 20px 32px 0 rgba(0, 0, 0, .40);

        backdrop-filter: blur(8px);
}

.tean_member_img_frame {
        position: absolute;
        top: 0;
        left: 0;

        overflow: hidden;

        width: 100%;
        height: 540px;
}

.tean_member_intro {
        font-family: "Noto Sans TC";
        font-size: 13px;
        font-weight: 500;
        font-style: normal;
        line-height: 20px;
        /* 153.846% */

        position: absolute;
        right: -12px;
        bottom: -48px;

        display: flex;

        width: 220px;
        height: 80px;
        padding: 8px 12px;

        color: #FFF;
        border: 1px solid #F8F8F8;
        border-radius: 4px;
        background: #1F2326;

        justify-content: center;
        align-items: center;
        flex-shrink: 0;
}

.tean_member_professional_title {
        position: absolute;
        z-index: 3;
        top: 16px;
        left: -16px;

        display: inline-flex;

        width: 40px;
        height: 420px;
}

.tean_member_professional_title h3 {
        font-family: "Noto Sans TC";
        font-size: 40px;
        font-weight: 900;
        font-style: normal;
        line-height: normal;

        position: absolute;

        display: flex;

        letter-spacing: 4px;

        opacity: 0;
        color: #000;

        -webkit-text-stroke-width: 1.2px;
        -webkit-text-stroke-color: #000;
}

.tean_member_professional_title p {
        font-family: "Noto Sans TC";
        font-size: 11px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;

        position: absolute;

        display: flex;

        text-transform: uppercase;

        opacity: 0;
        color: #FF4656;

        align-items: center;
}
/* --- 5. team (我們的團隊) --- */



/* --- 6. workflow (服務流程區塊) --- */
.workflow {
        display: flex;
        flex-direction: column;

        box-sizing: border-box;
        padding: 60px 80px;

        transition: all .3s ease;

        background-image: url("../images/service_bg.png");
        background-repeat: repeat;
        background-size: 50%;

        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 540px) {
        .workflow {
                padding: 60px 40px;
        }
}
.workflow-content-frame {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 1280px;

        align-items: flex-start;
}

.workflow-header {
        display: flex;
        flex-direction: column;

        width: 100%;
        margin: 0 0 20px 0;
        /*padding: 0 0 20px 0;*/
        /*border-bottom: 1px solid rgba(0, 0, 0, .5);*/

        align-items: flex-start;
        align-self: stretch;
}

.workflow-header h2 {
        font-family: Lato;
        font-size: 60px;
        font-weight: 300;
        font-style: normal;
        line-height: 72px;

        letter-spacing: -1.2px;
        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.workflow-header p {
        font-family: "Noto Sans TC";
        font-size: 20px;
        font-weight: 300;
        font-style: normal;
        line-height: 30px;

        color: #000;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .40);

        align-self: stretch;
}

.workflow-grid {
        display: flex;

        width: 100%;
        padding: 40px 0;

        border-top: 1px solid rgba(0, 0, 0, .5);
        border-bottom: 1px solid rgba(0, 0, 0, .5);

        align-items: flex-start;
        align-content: flex-start;
}

.workflow-grid ul {
        display: grid;

        width: 100%;

        transition: all .3s ease;

        background: rgba(255, 255, 255, .8);

        grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 720px) {
        .workflow-grid ul {
                grid-template-columns: 1fr;
        }
}
.workflow-grid ul li {
        position: relative;

        display: flex;
        flex-direction: column;

        padding: 24px;

        text-align: center;

        border: .8px solid #808080;

        align-items: center;
}

.workflow-grid-content {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 345px;

        transition: all .3s ease;
        text-align: left;

        align-items: flex-start;
        gap: 4px;
}
@media screen and (max-width: 720px) {
        .workflow-grid-content {
                max-width: 100%;
        }
}
.workflow-grid-content i {
        font-family: "Noto Sans TC";
        font-size: 12px;
        font-weight: 100;
        font-style: normal;
        line-height: 20px;

        text-transform: uppercase;

        color: #000;
        text-shadow: 1px 1px 0 #FFF;

        align-self: stretch;
}

.workflow-grid-content h3 {
        font-family: "Noto Sans TC";
        font-size: 14px;
        font-weight: 700;
        font-style: normal;
        line-height: 20px;
        /* 142.857% */

        display: -webkit-box;
        overflow: hidden;

        text-overflow: ellipsis;

        color: #333;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        align-self: stretch;
}

.workflow-grid-content p {
        font-family: "Noto Sans TC";
        font-size: 14px;
        font-weight: 300;
        font-style: normal;
        line-height: 20px;

        color: #333;

        align-self: stretch;
}

.step_01 {
        order: 1;
}
.step_02 {
        order: 2;
}
.step_03 {
        order: 3;
}
.step_04 {
        order: 6;
}
.step_05 {
        order: 5;
}
.step_06 {
        order: 4;
}
@media screen and (max-width: 720px) {
        .step_04 {
                order: 4;
        }
        .step_06 {
                order: 6;
        }
}
.step_arrow_right {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: -20px;

        width: 40px;
        height: 40px;

        transform: translateY(-50%);

        background: url(../images/arrow_step_right.png) no-repeat center center / contain;
}

.step_arrow_down {
        position: absolute;
        z-index: 1;
        bottom: -20px;
        left: 50%;

        width: 40px;
        height: 40px;

        transform: translateX(-50%);

        background: url(../images/arrow_step_down.png) no-repeat center center / contain;
}

.step_arrow_left {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: -20px;

        width: 40px;
        height: 40px;

        transform: translateY(-50%);

        background: url(../images/arrow_step_left.png) no-repeat center center / contain;
}
@media screen and (max-width: 720px) {
        .step_arrow_right,
        .step_arrow_left,
        .step_arrow_down {
                top: auto !important;
                right: auto !important;
                bottom: -20px;
                left: 50% !important;

                transform: translateX(-50%) !important;

                background: url(../images/arrow_step_down.png) no-repeat center center / contain !important;
        }
        .step_06 .step_arrow_right,
        .step_06 .step_arrow_left,
        .step_06 .step_arrow_down {
                display: none;
        }
}
/* --- 6. workflow (服務流程區塊) --- */



/* --- 7. contact (聯絡我們區塊) --- */
.contact {
        position: relative;

        display: flex;
        flex-direction: column;

        box-sizing: border-box;
        padding: 0 80px 60px 80px;

        transition: all .3s ease;

        background-image: url("../images/service_bg.png");
        background-repeat: repeat;
        background-size: 50%;

        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 540px) {
        .contact {
                padding: 0 40px 60px 40px;
        }
}
.divider_line {
        position: absolute;
        right: 80px;
        bottom: 0;
        left: 80px;

        max-width: 1280px;
        height: 0;
        margin-right: auto;
        margin-left: auto;

        border-bottom: 1px solid rgba(0, 0, 0, .5);
}
@media screen and (max-width: 540px) {
        .divider_line {
                right: 40px;
                left: 40px;
        }
}
.contact_content_frame {
        display: flex;

        width: 100%;
        max-width: 1100px;

        transition: all .3s ease;

        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
}
@media screen and (max-width: 838px) {
        .contact_content_frame {
                gap: 30px;
        }
}
.contact_info {
        position: relative;

        display: flex;
        flex-direction: column;

        width: 100%;
        min-width: 300px;
        max-width: 570px;

        transition: all .3s ease;

        flex: 1;
        gap: 12px;
}
@media screen and (max-width: 789px) {
        .contact_info {
                max-width: 100%;
        }
}
@media screen and (max-width: 380px) {
        .contact_info {
                min-width: 100%;
        }
}
.contact_info h2 {
        font-family: "Noto Sans TC";
        font-size: 72px;
        font-weight: 900;

        position: relative;

        width: fit-content;

        transition: all .3s ease;

        color: #252525;

        align-self: flex-start;
        font-feature-settings: "liga"off, "clig"off;
}
@media screen and (max-width: 1024px) and (min-width: 881px) {
        .contact_info h2 {
                font-size: 60px;
        }
}
@media screen and (max-width: 880px) {
        .contact_info h2 {
                font-size: 50px;
        }
}
@media screen and (max-width: 360px) {
        .contact_info h2 {
                font-size: 40px;
        }
}
.contact_info h3 {
        font-family: "Noto Sans TC";
        font-size: 48px;
        font-weight: 500;
        font-style: normal;
        line-height: 120%;

        width: 100%;
        min-width: 0;

        transition: all .3s ease;
        letter-spacing: -1px;

        color: #252525;

        font-feature-settings: "liga"off, "clig"off;
        align-self: stretch;
}
@media screen and (max-width: 1024px) {
        .contact_info h3 {
                font-size: 40px;
        }
}
@media screen and (max-width: 789px) {
        .contact_info h3 {
                font-size: 24px;
        }
}
@media screen and (max-width: 360px) {
        .contact_info h3 {
                font-size: 20px;
        }
}
.contact_info p {
        font-family: Lato;
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: normal;

        letter-spacing: -.05px;

        color: #252525;

        font-feature-settings: "liga"off, "clig"off;
        align-self: stretch;
}

.contact_img {
        position: absolute;
        top: 4px;
        right: -100px;

        width: 120px;
        height: 120px;

        transition: all .3s ease;

        background: url(../images/contact_noemail.png) no-repeat center center / contain;
}
@media screen and (max-width: 1024px) and (min-width: 881px) {
        .contact_img {
                top: 4px;
                right: -100px;

                width: 100px;
                height: 100px;
        }
}
@media screen and (max-width: 880px) {
        .contact_img {
                top: 4px;
                right: -70px;

                width: 80px;
                height: 80px;
        }
}
.contact_form {
        display: flex;
        flex-direction: column;

        min-width: 300px;
        max-width: 450px;
        /*width: 100%;*/

        flex: 1;
        align-items: center;
        gap: 28px;
}
@media screen and (max-width: 789px) {
        .contact_form {
                max-width: 100%;
        }
}
@media screen and (max-width: 380px) {
        .contact_form {
                min-width: 100%;
        }
}
.contact_form ul {
        display: flex;
        flex-direction: column;

        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
}

.contact_form ul li {
        display: flex;
        flex-direction: column;

        padding: 8px 20px;

        border: 1px dashed #252525;
        border-radius: 8px;

        align-items: flex-start;
        gap: 3px;
        align-self: stretch;
}

.contact_form ul li input {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 33px;

        color: #252525;
        border-bottom: 1px solid #252525;

        font-feature-settings: "liga"off, "clig"off;
        align-self: stretch;
}

.contact_form_row {
        display: flex;
        flex-direction: row !important;

        width: 100%;
        padding: 0;
        padding: 0 !important;

        border: none !important;
        border-radius: 0;

        align-items: flex-start;
        align-self: stretch;
        gap: 10px !important;
        flex-wrap: wrap;
}

.contact_form_select {
        position: relative;

        display: flex;
        flex-direction: column;

        padding: 8px 20px;

        border: 1px dashed #252525;
        border-radius: 8px;

        flex-shrink: 0;
        flex-grow: 1;
        align-items: flex-start;
        align-self: stretch;
}

.contact_form_select select {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 33px;

        color: #252525;
        border-bottom: 1px solid #252525;

        font-feature-settings: "liga"off, "clig"off;
        align-self: stretch;
}

.contact_form_select:after {
        position: absolute;
        top: 50%;
        right: 20px;

        width: 24px;
        height: 24px;

        content: "";
        transform: translateY(-50%);

        background: url(../images/arrow_select.svg) no-repeat center center / contain;
}

.contact_form button {
        font-family: Inter;
        font-size: 28px;
        font-weight: 600;
        font-style: normal;
        line-height: 42px;
        /* 150% */

        display: flex;

        box-sizing: border-box;
        padding: 12px 0;

        cursor: pointer;
        transition: all .3s ease;
        letter-spacing: -.4px;
        text-transform: uppercase;

        color: #FFF;
        border-radius: 50px;
        background: rgba(37, 37, 37, 1);

        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        font-feature-settings: "liga"off, "clig"off;
}

.contact_form button:hover {
        color: #252525;
        background: rgba(255, 200, 90, 1);
}

/* --- 7. contact (聯絡我們區塊) --- */



/* --- 8. footer 區塊 --- */
.footer {
        position: relative;

        display: flex;
        flex-direction: column;

        box-sizing: border-box;
        min-height: 30vh;
        padding: 80px;

        transition: all .3s ease;

        background-image: url("../images/service_bg.png");
        background-repeat: repeat;
        background-size: 50%;

        align-items: center;
        justify-content: center;
}
@media screen and (max-width: 480px) {
        .footer {
                padding: 80px 20px;
        }
}
.footer_obj_top {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;

        max-width: 1440px;
        height: 70px;
        margin-right: auto;
        margin-left: auto;

        background: url(../images/footer_top.svg) no-repeat center center;
}

.footer_obj_bottom {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;

        max-width: 1440px;
        height: 70px;
        margin-right: auto;
        margin-left: auto;

        background: url(../images/footer_bottom.svg) no-repeat center center;
}

.footer_content_frame {
        display: flex;

        width: 100%;
        max-width: 1000px;

        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
}

.footer_info {
        display: flex;
        flex-direction: column;

        min-width: 300px;

        transition: all .3s ease;

        justify-content: center;
        align-items: flex-start;
}
@media screen and (max-width: 794px) {
        .footer_info {
                width: 100%;

                align-items: center;
        }
}
@media screen and (max-width: 360px) {
        .footer_info {
                width: 100%;
                min-width: 100%;

                align-items: left;
        }
}
.footer_info li {
        display: flex;
        flex-direction: column;

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

.footer_info li:first-child {
        margin-bottom: 20px;

        gap: 0;
}

.footer_info li:last-child {
        gap: 8px;
}

.logo_footer {
        width: 182px;
        height: 40px;
        margin-bottom: 16px;

        background: url(../images/logo_allpower.png);
        background-position: center;
        background-size: cover;
}

.footer_info h2 {
        font-family: "Noto Sans TC";
        font-size: 20px;
        font-weight: 500;
        font-style: normal;
        line-height: 28px;

        color: #31373D;
}

.footer_info p {
        font-family: "Noto Sans TC";
        font-size: 13px;
        font-weight: 300;
        font-style: normal;
        line-height: 28px;

        letter-spacing: 1.04px;

        color: #31373D;
}
.footer_link {
        font-family: "Noto Sans TC";
        font-size: 14px;
        font-weight: 350;
        font-style: normal;
        line-height: 20px;

        position: relative;

        display: flex;

        height: 20px;

        transition: all .3s ease;

        color: #31373D;

        align-items: center;
        gap: 8px;
        align-self: stretch;
}
@media screen and (max-width: 794px) {
        .footer_link {
                justify-content: center;
        }
}
@media screen and (max-width: 760px) {
        .footer_link {
                justify-content: left;
        }
}
.footer_link:hover {
        letter-spacing: 10%;
}

.footer_social_media {
        display: flex;

        transition: all .3s ease;

        justify-content: center;
        align-items: center;
        gap: 12px;
}
@media screen and (max-width: 794px) {
        .footer_social_media {
                width: 100%;

                align-items: center;
        }
}
.footer_social_media a {
        position: relative;

        display: flex;

        width: 110px;

        transition: all .3s ease;

        justify-content: center;
        align-items: center;
}
@media screen and (max-width: 884px) {
        .footer_social_media a {
                width: 100px;
        }
}
@media screen and (max-width: 854px) {
        .footer_social_media a {
                width: 90px;
        }
}
@media screen and (max-width: 824px) {
        .footer_social_media a {
                width: 80px;
        }
}
.footer_social_media a img {
        position: relative;
        z-index: 1;
}

.footer_social_media a:after {
        position: absolute;
        z-index: 9;
        top: 0;
        left: 0;

        width: 110px;
        height: 110px;

        content: "";
        transition: all .5s ease;

        opacity: 0;
}

.footer_social_media a:hover:after {
        opacity: 1;
}

.social_icon_linkedin:after {
        background: url(../images/social_icon_linkedin_hover.png) no-repeat center center / contain !important;
}

.social_icon_fb:after {
        background: url(../images/social_icon_fb_hover.png) no-repeat center center / contain !important;
}

.social_icon_ig:after {
        background: url(../images/social_icon_ig_hover.png) no-repeat center center / contain !important;
}

.social_icon_line:after {
        background: url(../images/social_icon_line_hover.svg) no-repeat center center / contain !important;
}

/* --- 8. footer 區塊 --- */







/* --- 99. service_intro (產品服務區塊) --- */
.service_intro_title_frame {
        position: relative;

        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 40px 0 90px 0;

        transition: all .3s ease;

        align-items: flex-start;
        align-self: stretch;
}
@media screen and (max-width: 680px) {
        .service_intro_title_frame {
                padding: 40px 0 60px 0;
        }
}
.breadcrumb_links {
        display: flex;

        align-items: center;
        gap: 16px;
        align-self: stretch;
}

.breadcrumb_links li:after {
        margin-left: 16px;

        content: "/";
}

.breadcrumb_links li:last-child:after {
        display: none;
}

.breadcrumb_links li,
.breadcrumb_links li * {
        font-family: "Noto Sans TC";
        font-size: 12px;
        font-weight: 350;

        text-transform: uppercase;

        color: #000;
}

.breadcrumb_links li a {
        transition: all .3s ease;

        color: rgba(0, 0, 0, .40);
}

.breadcrumb_links li a:hover {
        color: rgba(0, 0, 0, 1);
}

.service_intro_title_frame h1 {
        font-family: "Noto Sans TC";
        font-size: 66px;
        font-weight: 900;

        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.service_intro_title_frame h2 {
        font-family: Lato;
        font-size: 44px;
        font-weight: 900;

        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.sup_content {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;

        text-transform: uppercase;

        color: #000;

        leading-trim: both;
        text-edge: cap;
        align-self: stretch;
}


.service_intro {
        position: relative;

        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 1300px;
        margin: 0 auto;

        align-items: flex-start;
}

.service_intro:after {
        position: absolute;
        z-index: 1;
        top: -90px;
        bottom: -90px;
        left: 50%;

        width: 0;

        content: "";
        transform: translateX(-50%);

        border-right: 1px dashed rgba(0, 0, 0, .12);
}

.service_intro > li {
        z-index: 2;

        display: flex;

        min-height: 20vh;

        border: 1px dashed #8A8A8A;
        border-radius: 12px;

        justify-content: space-between;
        align-items: center;
        align-self: stretch;
}

.service_intro > li:first-child {
        border-bottom: none;
        border-radius: 12px 12px 0 0;

        align-self: stretch;
}

.intro_img_right {
        padding: 0 0 0 80px;

        transition: all .3s ease;

        gap: 200px;
}
@media screen and (max-width: 950px) {
        .intro_img_right {
                gap: 160px;
        }
}
@media screen and (max-width: 820px) {
        .intro_img_right {
                padding: 0 0 0 40px;

                gap: 120px;
        }
}
@media screen and (max-width: 740px) {
        .intro_img_right {
                padding: 0 0 0 40px;

                gap: 80px;
        }
}

.intro_img_left {
        padding: 0 120px 0 0;
}

.intro_img_right .service_intro-img {
        order: 2;
}

.intro_img_right .service_intro-content {
        order: 1;
}

.intro_img_left .service_intro-img {
        order: 1;
}

.intro_img_left .service_intro-content {
        order: 2;
}

.intro_main_frame {
        flex-direction: column;

        padding: 60px 80px;

        transition: all .3s ease;

        border-radius: 0 0 12px 12px !important;

        gap: 24px;
}
@media screen and (max-width: 820px) {
        .intro_main_frame {
                padding: 60px 40px;
        }
}
.service_intro-img {
        position: relative;

        display: flex;

        max-width: 520px;
        max-height: 650px;

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

.service_intro-img-obj01 {
        position: absolute;
        top: 145px;
        left: -100px;

        width: 320px;
        height: 420px;
}

.service_intro-img-obj02 {
        position: absolute;
        right: -100px;
        bottom: 0;

        width: 450px;
        height: 320px;
}

.service_intro-img-obj05 {
        position: absolute;
        top: 50%;
        left: -160px;

        width: 485px;
        height: 485px;

        transform: translateY(-50%);
}

.service_intro-content {
        display: flex;
        flex-direction: column;

        width: 450px;

        justify-content: center;
}

.service_intro-content {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 460px;

        justify-content: center;
        gap: 16px;
}

.service_intro-title {
        font-family: "Noto Sans TC";
        font-size: 32px;
        font-weight: 900;
        font-style: normal;
        line-height: normal;

        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.service_intro_info {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 30px;

        display: flex;
        flex-direction: column;

        padding-top: 20px;

        letter-spacing: -.32px;
        text-transform: uppercase;

        color: #000;
        border-top: 1px solid rgba(0, 0, 0, .12);

        align-items: flex-start;
        align-self: stretch;
}

.intro_grid {
        display: flex;

        align-items: flex-start;
        gap: 60px;
        align-self: stretch;
}

.intro_grid > li {
        display: flex;
        flex-direction: column;

        align-items: flex-start;
        gap: 8px;
        flex: 1 0 0;
        align-self: stretch;
}

.intro_grid > li h5 {
        font-family: "Noto Sans TC";
        font-size: 20px;
        font-weight: 700;
        font-style: normal;
        line-height: normal;

        text-transform: uppercase;

        color: #25D399;

        align-self: stretch;
}

.intro_grid > li p {
        font-family: "Noto Sans TC";
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        line-height: 30px;
        /* 187.5% */

        letter-spacing: -.32px;
        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}

.intro_divider {
        position: relative;

        display: flex;

        width: 100%;
        height: 0;
        margin: 16px auto;

        border-top: 1px solid rgba(0, 0, 0, .12);
}

.intro_sub_title {
        font-family: "Noto Sans TC";
        font-size: 32px;
        font-weight: 900;
        font-style: normal;
        line-height: normal;

        text-transform: uppercase;

        color: #000;

        align-self: stretch;
}
@media screen and (max-width: 680px) {
        .service_intro > li {
                flex-direction: column;

                height: auto;
                padding: 20px 20px;

                gap: 30px;
        }

        .intro_img_right,
        .intro_img_left {
                padding: 40px 20px;

                gap: 30px;
        }

        .service_intro-img {
                overflow: hidden;

                width: 100%;
                max-width: 100%;
                max-height: 300px;

                border-radius: 12px;

                order: 1 !important;
        }

        .service_intro-content {
                width: 100%;
                max-width: 100%;

                text-align: center;

                order: 2 !important;
        }

        .service-list-img-obj01,
        .intro_img_right .service-list-img-obj01 {
                top: 50%;
                left: 50%;

                width: 320px;

                transform: translateX(-50%);
        }

        .service-list-img-obj05,
        .intro_img_right .service-list-img-obj05 {
                top: 30%;
                left: 50%;

                width: 400px;

                transform: translateX(-50%);
        }

        .intro_grid {
                flex-direction: column;

                gap: 12px;
        }
}

/* --- 99. service_intro (產品服務區塊) --- */

/* --- LINE Floating Button --- */
.line_floating_btn {
    position: fixed !important;
    z-index: 9999;
    right: 60px;
    bottom: 60px;
    
    display: block !important;
    width: 60px;
    height: 60px;
    
    border-radius: 50%;
}

.line_floating_btn img {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 1459px) {
    .line_floating_btn {
        right: 8px;
    }
}

@media screen and (max-width: 670px) {
    .line_floating_btn {
        width: 40px;
        height: 40px;
        bottom: 50px;
    }
}

/* --- LINE CTA Button in Contact Section --- */
.contact_line_cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line_cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 48px;
    background: #06C755;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.line_cta_btn:hover {
    background: #05b04c;
}

.line_cta_btn img {
    width: 48px;
    height: 48px;
}

.line_cta_btn span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

@media screen and (max-width: 670px) {
    .line_cta_btn {
        padding: 16px 32px;
        gap: 12px;
    }
    
    .line_cta_btn img {
        width: 36px;
        height: 36px;
    }
    
    .line_cta_btn span {
        font-size: 18px;
    }
}

/* --- Hero CTA Button --- */
.hero_cta_btn {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;

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

    height: 60px;
    padding: 8px 20px;

    cursor: pointer;
    transition: all .3s ease;
    letter-spacing: 2px;
    text-decoration: none;

    color: #000;
    border: 1px solid #F79009;
    border-radius: 4px;
    background-color: transparent;

    align-self: stretch;
}

.hero_cta_btn:hover {
    color: white;
    background-color: #F79009;
}

@media screen and (max-width: 1024px) {
    .hero_cta_btn {
        display: none;
    }
}

/* --- Service Highlight Text --- */
.service-highlight {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #F79009;
    margin: 0 0 16px 0;
    padding: 12px 16px;
    background-color: rgba(247, 144, 9, 0.08);
    border-left: 3px solid #F79009;
    border-radius: 0 4px 4px 0;
}

/* --- Process Section (服務流程) --- */
.process {
    padding: 80px 60px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    scroll-margin-top: 80px;
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-header h2 {
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.process-header p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.process-step-number {
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F79009;
    margin-bottom: 20px;
}
.process-step h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.process-step p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}
.process-cta {
    text-align: center;
    margin-top: 50px;
}
.btn-process-contact {
    display: inline-block;
    padding: 16px 48px;
    background: #F79009;
    color: #ffffff;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-process-contact:hover {
    background: #e07f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 144, 9, 0.3);
}
@media screen and (max-width: 1000px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    .process {
        padding: 60px 20px;
    }
    .process-header h2 {
        font-size: 32px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-step {
        padding: 30px 20px;
    }
    .process-step-number {
        font-size: 36px;
    }
    .process-step h3 {
        font-size: 20px;
    }
}

/* --- Comparison Section --- */
.comparison {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.comparison-header {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-header h2 {
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #252525;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.comparison-header p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.comparison-table {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.comparison-column {
    flex: 1;
    max-width: 450px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-bad {
    background-color: #fff;
    border: 2px solid #e0e0e0;
}

.comparison-good {
    background-color: #fff;
    border: 2px solid #F79009;
}

.comparison-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.comparison-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.comparison-bad .comparison-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

.comparison-good .comparison-icon {
    background-color: #fef3e2;
    color: #F79009;
}

.comparison-column h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.comparison-bad h3 {
    color: #666;
}

.comparison-good h3 {
    color: #F79009;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
}

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

.comparison-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.comparison-bad li::before {
    background-color: #e0e0e0;
}

.comparison-bad li {
    color: #666;
}

.comparison-good li::before {
    background-color: #F79009;
}

.comparison-good li {
    color: #333;
}

@media screen and (max-width: 768px) {
    .comparison {
        padding: 60px 24px;
    }
    
    .comparison-header h2 {
        font-size: 32px;
    }
    
    .comparison-table {
        flex-direction: column;
        gap: 24px;
    }
    
    .comparison-column {
        max-width: 100%;
    }
}

/* --- Team Navigation Arrows --- */
.team_nav_arrows {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 10;
        pointer-events: none;
}
.team_nav_arrows a {
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
}
.team_nav_arrows a:hover {
        background: #F79009;
}
.team_nav_arrows a:hover img {
        filter: brightness(0) invert(1);
}
.team_nav_arrows img {
        width: 20px;
        height: 20px;
        transition: filter 0.3s ease;
}
@media screen and (max-width: 720px) {
        .team_nav_arrows {
                top: 50%;
                transform: translateY(-50%);
        }
        .team_nav_arrows a {
                width: 40px;
                height: 40px;
        }
        .team_nav_arrows img {
                width: 16px;
                height: 16px;
        }
}

/* --- AI Coding Service Page Styles (FlyiDEA Style) --- */
.ai-page {
    padding-top: 0;
}

.ai-hero-full {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 160px 60px 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ai-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ai-hero-subtitle {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: #F79009;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.ai-hero-full h1 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}
.ai-hero-desc {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}
.ai-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.ai-btn-primary {
    display: inline-block;
    background: #F79009;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ai-btn-primary:hover {
    background: #e07f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 144, 9, 0.3);
}
.ai-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.ai-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}
.ai-hero-tags-wrapper {
    margin-top: 60px;
    overflow: hidden;
}
.ai-hero-tags-scroll {
    display: flex;
    gap: 16px;
    animation: scrollTags 20s linear infinite;
    width: max-content;
}
.ai-hero-tags-scroll span {
    background: rgba(247, 144, 9, 0.15);
    color: #F79009;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-family: "Noto Sans TC", sans-serif;
    white-space: nowrap;
}
@keyframes scrollTags {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ai-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.ai-section-header.light h2 {
    color: #ffffff;
}
.ai-section-header.light p {
    color: rgba(255, 255, 255, 0.9);
}
.ai-section-label {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #F79009;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ai-section-header h2 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 16px;
}
.ai-section-desc {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.ai-about-section {
    padding: 100px 60px;
    background: #ffffff;
}
.ai-about-body {
    max-width: 1000px;
    margin: 0 auto;
}
.ai-about-text {
    text-align: center;
    margin-bottom: 50px;
}
.ai-about-text p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}
.ai-about-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ai-about-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 20px 16px;
    border-radius: 12px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #2E2E2E;
}
.check-icon {
    color: #F79009;
    font-weight: 700;
    font-size: 16px;
}

.ai-dev-section {
    padding: 100px 60px;
    background: #f8f9fa;
}
.ai-dev-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.ai-dev-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.ai-dev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.ai-dev-icon {
    font-size: 56px;
    margin-bottom: 24px;
}
.ai-dev-card h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 16px;
}
.ai-dev-card p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.ai-features-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.ai-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.ai-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.ai-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}
.ai-feature-item h4 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.5;
}
.ai-feature-item p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ai-replit-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #21262D 100%);
    text-align: center;
}
.ai-replit-header {
    margin-bottom: 60px;
}
.ai-replit-header p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: #F97316;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.ai-replit-header h2 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}
.ai-replit-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.ai-stat-item {
    text-align: center;
}
.ai-stat-number {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
}
.ai-stat-number span {
    font-size: 36px;
    color: #F97316;
}
.ai-stat-item p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}
.ai-replit-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.replit-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}
.replit-logo-link:hover {
    transform: scale(1.05);
}
.replit-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}
.replit-partner {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 768px) {
    .ai-replit-section {
        padding: 60px 20px;
    }
    .ai-replit-header h2 {
        font-size: 28px;
    }
    .ai-replit-stats {
        gap: 40px;
    }
    .ai-stat-number {
        font-size: 48px;
    }
    .ai-stat-number span {
        font-size: 24px;
    }
}

.ai-pricing-section {
    padding: 100px 60px;
    background: #f8f9fa;
}
.ai-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}
.ai-pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}
.ai-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.ai-pricing-card.featured {
    border: 3px solid #F97316;
}
.ai-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F97316;
    color: #ffffff;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 20px;
}
.ai-pricing-card h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 16px;
    text-align: center;
}
.ai-pricing-price {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
}
.ai-pricing-price span {
    font-size: 42px;
    font-weight: 700;
    color: #2E2E2E;
}
.ai-pricing-desc {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.ai-pricing-includes {
    margin-bottom: 24px;
}
.ai-pricing-includes .includes-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 16px;
}
.ai-pricing-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ai-pricing-includes li {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}
.ai-pricing-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: 600;
}
.ai-pricing-timeline {
    background: #eef1f5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #e0e4e8;
}
.timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #555;
}
.timeline-icon {
    font-size: 18px;
}
.ai-pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #F97316;
    color: #ffffff;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.ai-pricing-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}
.ai-pricing-btn.secondary {
    background: #2E2E2E;
}
.ai-pricing-btn.secondary:hover {
    background: #444;
}
.ai-pricing-maintenance {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.maintenance-header {
    margin-bottom: 24px;
}
.maintenance-header h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 8px;
}
.maintenance-header p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #888;
}
.maintenance-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.maintenance-price {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: #555;
}
.maintenance-price span {
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
}
.maintenance-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: #555;
}
@media (max-width: 768px) {
    .ai-pricing-section {
        padding: 60px 20px;
    }
    .ai-pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ai-pricing-card {
        padding: 30px 24px;
    }
    .ai-pricing-price span {
        font-size: 32px;
    }
    .maintenance-card {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    .maintenance-price span {
        font-size: 28px;
    }
}

.ai-process-section {
    padding: 100px 60px;
    background: #ffffff;
}
.ai-process-section .ai-section-header h2 {
    color: #2E2E2E;
}
.ai-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.ai-process-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
}
.ai-process-num {
    font-family: "Lato", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #F79009;
    margin-bottom: 20px;
    line-height: 1;
}
.ai-process-item h4 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 16px;
}
.ai-process-item p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.ai-cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #F79009 0%, #e07f00 100%);
    text-align: center;
}
.ai-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.ai-cta-section h2 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.ai-cta-section p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}
.ai-btn-large {
    display: inline-block;
    background: #ffffff;
    color: #F79009;
    padding: 18px 60px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ai-btn-large:hover {
    background: #2E2E2E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1000px) {
    .ai-about-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-dev-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    .ai-hero-full {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    .ai-hero-full h1 {
        font-size: 32px;
    }
    .ai-hero-desc {
        font-size: 16px;
    }
    .ai-about-section, .ai-dev-section, .ai-features-section, .ai-process-section, .ai-cta-section {
        padding: 60px 20px;
    }
    .ai-section-header h2 {
        font-size: 28px;
    }
    .ai-about-benefits {
        grid-template-columns: 1fr;
    }
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    .ai-process-grid {
        grid-template-columns: 1fr;
    }
    .ai-cta-section h2 {
        font-size: 28px;
    }
}
