:root {
    --c-menu: #5b4e77;
    --c-menu-en: #ae99dd;
    --c-title: #866bc3;
    --c-title-2: #886dc4;
    --c-text: #5d5d5d;
    --c-dark: #35323a;
    --c-muted: #a5a5a5;
    --c-hero-en: #ebe8f0;
    --c-line: #beaef4;
    --c-local: #cda9f2;
    --c-card-bg: #f8f8fe;
    --c-contact-bg: #f5f4fa;
    --c-footer: #3f3d45;
    --c-footer-line: #636363;
    --c-footer-muted: #bdbbc5;
    --c-white: #ffffff;
    --c-news-line: #e2dcf3;
    --c-line-green: #06c755;
    --c-contact-purple: #7753ae;
    --c-small-white: #e8e4f4;
    --g-menu-text: linear-gradient(90deg, #6e4094 0%, #9972ba 100%);
    --g-menu-line: linear-gradient(90deg, #9780cd 0%, #bbaef2 100%);
    --g-button: linear-gradient(90deg, #6c3f93 0%, #9c75bd 100%);
    --g-news: linear-gradient(90deg, #f3f1ff 0%, #f8f8fe 100%);
    --g-stats: linear-gradient(90deg, #5f3d7c 0%, #446fcf 100%);
    --g-works-roll: linear-gradient(180deg, #9184c7 0%, #baa6ef 100%);
    --g-cta: linear-gradient(90deg, #a972be 0%, #8260b9 100%);
    --shadow-news: 0 12px 30px rgba(14, 5, 10, 0.1);
    --container-max: 1440px;
    --wide-max: 1608px;
    --gutter: 40px;
    --mobile-gutter: 16px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--c-white);
    color: var(--c-text);
    font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

body.is-menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

.container {
    width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.wide-shell,
.site-header__inner,
.sec-banner__content,
.sec-stats__panel {
    width: min(var(--wide-max), calc(100% - (var(--gutter) * 2)));
    margin-left: auto;
    margin-right: auto;
}

.skip-link,
a[href="#main-content"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.sec-title {
    text-align: center;
}

.sec-title__en {
    color: var(--c-title);
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
}

.sec-title__zh {
    margin-top: 16px;
    color: var(--c-dark);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.sec-title__desc {
    max-width: 910px;
    margin: 30px auto 0;
    color: var(--c-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    text-align: center;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 45px;
    padding: 10px 30px;
    border: 0;
    border-radius: 999px;
    color: var(--c-white) !important;
    background: var(--g-button);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 63, 147, 0.35);
    filter: brightness(1.08);
}

.btn-pill::after,
.btn-outline::after,
.btn-white::after {
    content: "›";
    margin-left: 18px;
    font-size: 26px;
    font-weight: 400;
    line-height: 0.7;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 45px;
    padding: 9px 30px;
    border: 1px solid var(--c-title);
    border-radius: 999px;
    color: var(--c-title) !important;
    background: var(--c-white);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(134, 107, 195, 0.2);
    background: var(--c-title);
    color: var(--c-white) !important;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 66px;
    padding: 12px 30px;
    border: 0;
    border-radius: 999px;
    color: var(--c-contact-purple) !important;
    background: var(--c-white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(134, 107, 195, 0.25);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: transparent;
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(14, 5, 10, 0.08);
}

.site-header__inner {
    height: 100px;
    display: flex;
    align-items: center;
    gap: 42px;
}

.site-header__logo img {
    width: 360px;
}

.site-nav {
    display: flex;
    align-items: flex-start;
    gap: 52px;
    margin-left: auto;
}

.site-nav__link {
    position: relative;
    min-width: 76px;
    color: var(--c-menu);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
}

.site-nav__link span {
    display: block;
    margin-top: 6px;
    color: var(--c-menu-en);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 70px;
    height: 2px;
    background: var(--g-menu-line);
    transform: translateX(-50%);
}

.site-nav__link {
    transition: color 0.2s ease;
}

.site-nav__link:hover {
    color: var(--c-title);
}

.site-header__line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 64px;
    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.site-header__line img {
    display: block;
    width: 184px;
    height: 64px;
    border-radius: 0;
}

.site-header__line:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 42px;
    height: 4px;
    margin: 7px 0;
    border-radius: 4px;
    background: var(--c-menu);
}

@media (max-width: 991.98px) {
    .menu-toggle {
        width: 26px;
        height: 22px;
    }

    .menu-toggle span {
        width: 26px;
        height: 2.5px;
        margin: 4px 0;
        border-radius: 2px;
    }
}

.mobile-menu,
.mobile-menu-backdrop,
.mobile-action-bar {
    display: none;
}

/* Banner */
.sec-banner {
    position: relative;
    z-index: 1;
    min-height: 895px;
    overflow: hidden;
    background: #ffffff;
}

.sec-banner__swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sec-banner__slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.sec-banner__slide picture,
.sec-banner__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sec-banner__slide img {
    object-fit: cover;
    object-position: center top;
}

.sec-banner__slide picture img {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(16px);
}

.sec-banner__slide picture.is-loaded img {
    animation: heroReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sec-banner__content {
    position: relative;
    z-index: 3;
    padding-top: 335px;
}

.sec-banner__brand {
    color: var(--c-title);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.sec-banner__headline {
    margin-top: 12px;
    color: var(--c-title);
    font-size: clamp(17.5px, calc(13.09px + 1.065vw), 28px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 413.98px) {
    .sec-banner__headline {
        white-space: normal;
    }
}

.sec-banner__en {
    margin-top: 14px;
    color: var(--c-hero-en);
    font-size: 76px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0.01em;
}

.sec-banner__actions {
    display: flex;
    gap: 18px;
    margin-top: 46px;
}

.sec-banner__text-rotator {
    position: relative;
    display: grid;
}

.sec-banner__text-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.sec-banner__text-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.sec-banner__brand,
.sec-banner__headline,
.sec-banner__en,
.sec-banner__actions {
    opacity: 0;
}

.sec-banner__brand { transform: translateY(-20px); }
.sec-banner__headline { transform: translateX(-30px); }
.sec-banner__en { transform: scale(0.85); }
.sec-banner__actions { transform: translateY(30px); }

.sec-banner.is-loaded .sec-banner__brand {
    animation: heroTextFadeDown 0.8s ease-out 0.2s forwards;
}
.sec-banner.is-loaded .sec-banner__headline {
    animation: heroTextFadeRight 1s ease-out 0.4s forwards;
}
.sec-banner.is-loaded .sec-banner__en {
    animation: heroTextZoom 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.sec-banner.is-loaded .sec-banner__actions {
    animation: heroTextFadeUp 0.9s ease-out 0.85s forwards;
}

@keyframes heroTextZoom {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* About */
.sec-about {
    position: relative;
    z-index: 2;
    padding: 0 0 92px;
    background-color: #ffffff;
    background-image: url("../images/00-hp/ab_bg960.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.sec-about__grid {
    display: grid;
    grid-template-columns: 856px 1fr;
    column-gap: 70px;
    align-items: start;
}

.sec-about__left {
    order: 1;
    margin-top: -40px;
}

.sec-about__pic {
    margin-top: 0;
}

.sec-about__pic img {
    width: 856px;
    height: 416px;
    object-fit: cover;
    border-radius: 0 24px 0 0;
    transition: transform 0.5s ease;
}

.sec-about__pic:hover img {
    transform: scale(1.03);
}

.sec-about__body {
    grid-column: 2;
    grid-row: 1;
    padding-top: 40px;
    align-self: center;
}

.sec-about__en {
    color: var(--c-title);
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
}

.sec-about__subtitle {
    margin-top: 46px;
    color: var(--c-title-2);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
}

.sec-about__text {
    margin-top: 24px;
    color: var(--c-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 2.05;
}

.sec-about__btn {
    margin-top: 32px;
    min-width: 280px;
    min-height: 70px;
}

.sec-about__local {
    margin-top: 24px;
    color: var(--c-title-2);
    text-align: end;
}

.sec-about__local strong {
    display: block;
    color: var(--c-local);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.sec-about__local span {
    display: inline-block;
    margin: 12px 9px 0;
    color: var(--c-title-2);
    font-size: 20px;
    font-weight: 500;
}

.sec-about__local span::before {
    content: "✦";
    margin-right: 4px;
    color: var(--c-local);
}

/* Service */
.sec-service {
    position: relative;
    z-index: 1;
    padding: 4px 0 40px;
    background: var(--c-white);
}

.sec-service__title {
    text-align: center;
}

.sec-service__title .sec-title__en {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.sec-service__title .sec-title__en::before,
.sec-service__title .sec-title__en::after {
    content: "";
    height: 1px;
    background: var(--c-line);
}

.sec-service__title .sec-title__zh {
    margin-top: 14px;
}

@media (max-width: 767.98px) {
    .sec-service__title .sec-title__en {
        gap: 18px;
        max-width: 100%;
    }
}

.sec-service__grid {
    display: grid;
    grid-template-columns: minmax(420px, 460px) 1fr;
    gap: 60px;
    align-items: center;
    width: min(1280px, calc(100% - 80px));
    margin: 56px auto 0;
}

.service-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-list::before,
.service-list::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.service-list::before {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--c-line) 30%,
        var(--c-line) 70%,
        transparent 100%
    );
}

.service-list::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--c-line) 30%,
        var(--c-line) 70%,
        transparent 100%
    );
}

.service-list__item {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.25s ease;
}

.service-list__item:hover {
    background: rgba(190, 174, 244, 0.08);
}

.service-list__item img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.service-list__en {
    margin-top: 18px;
    color: var(--c-title-2);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-list__name {
    margin-top: 6px;
    color: var(--c-dark);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.sec-service__photo {
    position: relative;
}

.sec-service__photo img {
    width: 100%;
    height: auto;
}

.sec-service__more {
    margin-top: 56px;
    text-align: center;
}

.sec-service__more .btn-pill {
    min-width: 220px;
    min-height: 56px;
}

/* News */
.sec-news {
    position: relative;
    z-index: 1;
    padding: 40px 0 100px;
    background-color: #ffffff;
    background-image: url("../images/00-hp/news_bg960.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

.sec-news__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 78px;
}

.sec-news__intro {
    padding-top: 18px;
}

.sec-news__intro .sec-title__en,
.sec-news__intro .sec-title__zh {
    text-align: left;
}

.sec-news__intro .sec-title__zh {
    margin-top: 24px;
}

.sec-news__intro-text {
    margin-top: 30px;
    color: var(--c-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
}

.sec-news__intro .btn-pill {
    min-width: 280px;
    min-height: 70px;
    margin-top: 30px;
}

.news-list {
    display: grid;
    gap: 52px;
}

.news-card {
    display: grid;
    grid-template-columns: 336px 1fr;
    align-items: center;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card__pic {
    position: relative;
    z-index: 2;
}

.news-card__pic img {
    width: 336px;
    height: 240px;
    object-fit: cover;
    border-radius: 26px 0 26px 26px;
}

.news-card__content {
    min-height: 238px;
    margin-left: -78px;
    padding: 34px 58px 28px 118px;
    border-radius: 30px 30px;
    background: linear-gradient(90deg, #f3f1ff 0%, #f8f8fe 100%);
    box-shadow: none;
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    color: var(--c-title-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.news-card__title {
    margin-top: 20px;
    color: var(--c-dark);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

.news-card__text {
    margin-top: 16px;
    color: var(--c-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.news-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--c-news-line);
    color: var(--c-muted);
    font-size: 16px;
    font-weight: 400;
}

.news-card__footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-title-2);
    font-size: 20px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.news-card__footer a:hover {
    color: var(--c-title);
}

.news-card__footer a i {
    font-size: 22px;
}

/* Stats */
.sec-stats {
    position: relative;
    z-index: 5;
    margin-top: -65px;
    margin-bottom: 40px;
}

.sec-stats__panel {
    min-height: 130px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 24px 40px;
    border-radius: 0 22px 0 22px;
    background: var(--g-stats);
}

.sec-stats__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--c-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.sec-stats__item:last-child {
    border-right: 0;
}

.sec-stats__item strong {
    color: #f7d2ed;
    font-size: 54px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Works */
.sec-works {
    position: relative;
    z-index: 2;
    padding: 1px 0 94px;
    overflow: visible;
    background-image: url("../images/00-hp/work_bg960.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.works-swiper {
    position: relative;
    width: 1920px;
    max-width: 100vw;
    margin: 54px auto 0;
    padding: 52px 0 12px;
    overflow: visible;
}

.works-swiper .swiper-slide {
    width: 784px;
    opacity: 0.72;
    transform: translateY(0) scale(0.86);
    transition:
        transform 0.42s ease,
        opacity 0.42s ease,
        filter 0.42s ease;
    filter: saturate(0.92);
}

.works-swiper .swiper-slide-active {
    opacity: 1;
    transform: translateY(-50px) scale(1);
    z-index: 2;
    filter: saturate(1);
}

.work-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(50, 27, 85, 0.12);
    isolation: isolate;
}

.work-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 72%;
    background: linear-gradient(90deg, #9184c7 0%, #baabef 100%);
    -webkit-mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.02) 12%,
        rgba(0, 0, 0, 0.08) 24%,
        rgba(0, 0, 0, 0.2) 36%,
        rgba(0, 0, 0, 0.4) 48%,
        rgba(0, 0, 0, 0.68) 58%,
        rgba(0, 0, 0, 0.88) 64%,
        rgba(0, 0, 0, 0.95) 67%,
        rgba(0, 0, 0, 0.98) 100%
    );
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.02) 12%,
        rgba(0, 0, 0, 0.08) 24%,
        rgba(0, 0, 0, 0.2) 36%,
        rgba(0, 0, 0, 0.4) 48%,
        rgba(0, 0, 0, 0.68) 58%,
        rgba(0, 0, 0, 0.88) 64%,
        rgba(0, 0, 0, 0.95) 67%,
        rgba(0, 0, 0, 0.98) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.work-card::after {
    content: none;
}

.work-card:hover::before,
.work-card:focus-visible::before {
    opacity: 1;
}

.work-card__link {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url("../images/00-hp/work_linkicon.png") center / contain
        no-repeat;
    box-shadow: 0 8px 22px rgba(67, 42, 116, 0.25);
    opacity: 0;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
    transform: translate(8px, -8px) scale(0.9);
    pointer-events: none;
}

.work-card:hover .work-card__link,
.work-card:focus-visible .work-card__link {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.work-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 42px 20px;
    color: var(--c-white);
    text-align: center;
    background: transparent;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    transform: translateY(16px);
    pointer-events: none;
}

.work-card:hover .work-card__caption,
.work-card:focus-visible .work-card__caption {
    opacity: 1;
    transform: translateY(0);
}

.work-card__caption strong {
    font-size: 27px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.08em;
}

.work-card__caption small {
    margin-top: 9px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.work-card img {
    width: 784px;
    height: 496px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.06);
}

.sec-works__controls {
    position: relative;
    z-index: 8;
    width: 784px;
    max-width: calc(100vw - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 28px auto 0;
}

.work-arrow {
    position: absolute;
    top: -338px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    transform: translateY(-50%);
    z-index: 5;
}

.work-arrow--prev {
    left: -64px;
}

.work-arrow--next {
    right: -80px;
}

.work-arrow:hover {
    transform: translateY(-50%) scale(1.12);
    opacity: 0.85;
}

.work-arrow img {
    width: 56px;
    height: 56px;
}

.sec-works__more .btn-pill {
    min-width: 252px;
    min-height: 55px;
    padding: 10px 26px;
    font-size: 16px;
}

/* Growth sections */
.sec-growth {
    position: relative;
    z-index: 1;
    background-image: url("../images/00-hp/card_bg960.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.sec-card,
.sec-beyond,
.sec-cta {
    position: relative;
    background: transparent;
}

/* Card */
.sec-card {
    z-index: 2;
    padding: clamp(86px, 6.2vw, 120px) 0 clamp(42px, 3vw, 60px);
}

.sec-card__grid {
    width: min(1400px, calc(100% - (var(--gutter) * 2)));
    display: grid;
    grid-template-columns: minmax(560px, 660px) 1fr;
    gap: clamp(60px, 5vw, 92px);
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.sec-card__pic {
    position: relative;
    isolation: isolate;
    --sec-card-pic-offset: clamp(34px, 3.2vw, 52px);
    --sec-card-pic-right-trim: clamp(78px, 6.7vw, 110px);
}

.sec-card__pic::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(-1 * var(--sec-card-pic-offset));
    left: -50vw;
    width: calc(100% + 50vw - var(--sec-card-pic-right-trim));
    height: calc(100% - var(--sec-card-pic-offset));
    background: #f0eef7;
    border-radius: 0 clamp(16px, 1.3vw, 24px) clamp(16px, 1.3vw, 24px) 0;
}

.sec-card__pic img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 660px;
    aspect-ratio: 560 / 347;
    height: auto;
    object-fit: cover;
    border-radius: 0 20px 20px 20px;
}

.sec-card__title {
    color: var(--c-title-2);
    font-size: clamp(20px, 1.55vw, 30px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.08em;
}

.sec-card__text {
    margin-top: clamp(14px, 1.1vw, 22px);
    color: var(--c-text);
    font-size: clamp(13px, 0.94vw, 18px);
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.04em;
}

.sec-card__text--strong {
    color: var(--c-title-2);
    font-weight: 500;
}

.sec-card .btn-pill {
    min-width: clamp(194px, 14vw, 230px);
    min-height: clamp(44px, 3.2vw, 56px);
    margin-top: clamp(22px, 1.8vw, 34px);
    font-size: clamp(13px, 1vw, 16px);
}

/* Beyond */
.sec-beyond {
    z-index: 2;
    padding: clamp(34px, 2.4vw, 48px) 0 0;
}

.sec-beyond__lead {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 24px;
    margin-bottom: 44px;
    text-align: end;
}

.sec-beyond__lead span {
    color: var(--c-title-2);
    font-size: clamp(20px, 1.46vw, 28px);
    font-weight: 500;
    letter-spacing: 0.08em;
}

.sec-beyond__lead strong {
    color: var(--c-text);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.sec-beyond__lead strong::before {
    content: "|";
    margin-right: 24px;
    color: var(--c-title-2);
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(540px, 620px));
    gap: clamp(24px, 1.8vw, 32px) clamp(28px, 2vw, 40px);
    justify-content: center;
}

.beyond-card {
    min-height: clamp(178px, 13vw, 230px);
    padding: clamp(34px, 2.6vw, 50px) clamp(48px, 3.6vw, 70px)
        clamp(30px, 2.2vw, 42px);
    border-radius: 0 0 22px 0;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        filter 0.28s ease;
}

.beyond-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(83, 49, 136, 0.16);
}

.beyond-card--outline {
    position: relative;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 0 0 22px 0;
}

.beyond-card--outline::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #9d73c0, #bdadf3);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.beyond-card--image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 22px rgba(83, 49, 136, 0.1);
}

.beyond-card--seo {
    background-image: url("../images/00-hp/4_seobg.png");
}

.beyond-card--mix {
    background-image: url("../images/00-hp/4_mixbg.png");
}

.beyond-card:nth-child(3) {
    order: 4;
}

.beyond-card:nth-child(4) {
    order: 3;
}

.beyond-card__title {
    color: var(--c-title-2);
    font-size: clamp(19px, 1.35vw, 26px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: left;
}

.beyond-card--image .beyond-card__title,
.beyond-card--image .beyond-card__text {
    color: var(--c-white);
}

.beyond-card__text {
    margin-top: clamp(20px, 1.6vw, 30px);
    padding-left: clamp(24px, 3vw, 56px);
    color: var(--c-title-2);
    font-size: clamp(15px, 0.88vw, 20px);
    font-weight: 500;
    line-height: 1.85;
    text-align: left;
}

/* CTA */
.sec-cta {
    z-index: 3;
    padding: 0;
    margin-top: 0;
    margin-bottom: clamp(-160px, -7.5vw, -99px);
    transform: translateY(-100%);
}

.sec-cta__inner {
    width: calc(100% - clamp(104px, 8.125vw, 156px));
    min-height: clamp(171px, 13.3vw, 256px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(28px, 2.4vw, 48px);
    margin: 0 0 0 clamp(104px, 17.125vw, 656px);
    padding: clamp(40px, 3vw, 58px) clamp(60px, 5vw, 96px)
        clamp(40px, 3vw, 58px) clamp(80px, 9vw, 230px);
    border-radius: 16px 0 0 0;
    background: var(--g-cta);
}

.sec-cta__inner > :first-child {
    text-align: right;
}

.sec-cta__actions {
    margin-right: clamp(0px, 17.9vw, 344px);
}

.sec-cta__title {
    color: var(--c-white);
    font-size: clamp(20px, 1.4vw, 28px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.05em;
}

.sec-cta__text {
    margin-top: clamp(8px, 0.7vw, 14px);
    color: var(--c-small-white);
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.sec-cta__actions {
    display: flex;
    gap: clamp(20px, 1.5vw, 30px);
    justify-content: flex-end;
}

.sec-cta .btn-white {
    min-width: clamp(178px, 12.5vw, 230px);
    min-height: clamp(45px, 3.4vw, 58px);
    padding: 9px 23px;
    font-size: clamp(12px, 0.94vw, 16px);
    letter-spacing: 0.04em;
}

.sec-cta .btn-white:nth-child(2) {
    min-width: clamp(124px, 9.5vw, 180px);
}

/* Contact */
.sec-contact {
    position: relative;
    z-index: 1;
    padding: 0 0 54px;
    background: var(--c-contact-bg);
}

.sec-contact__grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 62px;
    align-items: center;
}

.sec-contact__title {
    color: var(--c-contact-purple);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.07em;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-list__item {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: background 0.25s ease;
}

.contact-list__item::before,
.contact-list__item:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: var(--c-contact-purple);
}

.contact-list__item::before {
    left: 0;
}

.contact-list__item:last-child::after {
    right: 0;
}

.contact-list__item:hover {
    background: rgba(119, 83, 174, 0.04);
}

.contact-list__item img {
    width: 60px;
    height: 60px;
}

.contact-list__label {
    margin-top: 14px;
    color: var(--c-contact-purple);
    font-size: 18px;
    font-weight: 500;
}

.contact-list__value {
    margin-top: 12px;
    color: var(--c-footer);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Footer */
.site-footer {
    padding: 56px 0 32px;
    background: var(--c-footer) !important;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 70px;
    align-items: center;
}

.site-footer__logo img {
    width: 330px;
}

.site-footer__nav {
    display: flex;
    gap: 54px;
}

.site-footer__nav a {
    color: var(--c-white);
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.site-footer__nav a:hover {
    opacity: 0.75;
}

.site-footer__social {
    display: flex;
    gap: 18px;
}

.site-footer__social a {
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.site-footer__social a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.site-footer__social img {
    width: 32px;
    height: 32px;
}

.site-footer__info {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-top: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-footer-line);
    color: var(--c-white);
    font-size: 18px;
    font-weight: 500;
}

.site-footer__info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__info img {
    width: 24px;
    height: 24px;
}

.site-footer__counts {
    display: flex;
    justify-content: center;
    gap: 72px;
    margin-top: 24px;
    color: var(--c-footer-muted);
    font-size: 17px;
    font-weight: 400;
}

.site-footer__copy {
    margin-top: 14px;
    color: var(--c-footer-muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-align: center;
}

.back-top {
    position: fixed;
    right: 28px;
    bottom: 44px;
    z-index: 900;
    width: 58px;
    height: 58px;
    /* border: 2px solid #9d73c0; */
    border-radius: 16px;
    color: var(--c-title-2);
    /* background: var(--c-white); */
    font-size: 30px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(63, 61, 69, 0.18);
    transition:
        opacity 0.2s ease,
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-4px);
    /* background: var(--c-title); */
    color: var(--c-white);
}

@media (min-width: 1200px) {
    .sec-about {
        background-image: url("../images/00-hp/ab_bg1440.png");
    }
    .sec-news {
        background-image: url("../images/00-hp/news_bg1440.png");
    }
    .sec-works {
        background-image: url("../images/00-hp/work_bg1440.png");
    }
    .sec-growth {
        background-image: url("../images/00-hp/card_bg1440.png");
    }
}

@media (min-width: 1600px) {
    .sec-about {
        background-image: url("../images/00-hp/ab_bg1920.png");
    }
    .sec-news {
        background-image: url("../images/00-hp/news_bg1920.png");
    }
    .sec-works {
        background-image: url("../images/00-hp/work_bg1920.png");
    }
    .sec-growth {
        background-image: url("../images/00-hp/card_bg1920.png");
    }
}

@media (min-width: 2200px) {
    .sec-about {
        background-image: url("../images/00-hp/ab_bg2560.png");
    }
    .sec-news {
        background-image: url("../images/00-hp/news_bg2560.png");
    }
    .sec-works {
        background-image: url("../images/00-hp/work_bg2560.png");
    }
    .sec-growth {
        background-image: url("../images/00-hp/card_bg2560.png");
    }
}

@media (max-width: 1439.98px) {
    .container {
        width: min(1120px, calc(100% - (var(--gutter) * 2)));
    }

    .site-header__inner,
    .sec-banner__content,
    .sec-stats__panel {
        width: calc(100% - (var(--gutter) * 2));
    }

    .site-nav {
        gap: 28px;
    }

    .site-header__logo img {
        width: 310px;
    }

    .sec-about__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sec-about__left {
        grid-column: 1;
        grid-row: 1;
        margin-top: -120px;
    }

    .sec-about__pic img,
    .sec-card__pic img {
        width: 100%;
        height: auto;
    }

    .sec-card__pic::before {
        --sec-card-pic-offset: 38px;
        --sec-card-pic-right-trim: 90px;
    }

    .sec-service__grid,
    .sec-card__grid,
    .beyond-grid {
        width: auto;
        grid-template-columns: 1fr 1fr;
    }

    .sec-service__grid {
        grid-template-columns: 420px 1fr;
        gap: 50px;
    }

    .sec-stats__panel {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1199.98px) {
    .sec-about__grid,
    .sec-card__grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .sec-about__left {
        grid-column: 1;
        grid-row: 1;
        margin-top: -60px;
    }

    .sec-about__body {
        grid-column: 2;
        grid-row: 1;
    }

    .sec-contact__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .sec-news__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .news-card {
        max-width: 720px;
        margin: 0 auto;
    }

    .sec-service__photo {
        max-width: 680px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .sec-service__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .service-list {
        width: 100%;
        max-width: 520px;
    }

    .sec-service__photo {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 1199.98px) {
    .sec-stats__panel {
        padding-left: 50px;
        padding-right: 50px;
    }

    .sec-cta__inner {
        width: calc(100% - 80px);
        padding-left: 52px;
        padding-right: 52px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer__info {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header__inner {
        width: calc(100vw - 64px);
        height: 80px;
        gap: 14px;
    }

    .site-header__logo img {
        width: 240px;
    }

    .site-nav {
        gap: 12px;
    }

    .site-nav__link {
        min-width: 58px;
        font-size: 13px;
        letter-spacing: 0.03em;
    }

    .site-nav__link span {
        margin-top: 4px;
        font-size: 10px;
    }

    .site-nav__link.is-active::after,
    .site-nav__link:hover::after {
        bottom: -12px;
        width: 48px;
    }

    .site-header__line,
    .site-header__line img {
        width: 132px;
        height: 46px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .container,
    .wide-shell,
    .site-header__inner,
    .sec-banner__content,
    .sec-stats__panel {
        width: calc(100vw - 64px);
    }

    .sec-title__en {
        font-size: 46px;
    }

    .sec-title__zh {
        font-size: 28px;
    }

    .sec-title__desc {
        max-width: 720px;
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.85;
    }

    .sec-about {
        padding-bottom: 74px;
    }

    .sec-about__en {
        font-size: 44px;
    }

    .sec-about__subtitle {
        margin-top: 28px;
        font-size: 21px;
        line-height: 1.7;
    }

    .sec-about__text {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.9;
    }

    .sec-about__btn {
        min-width: 220px;
        min-height: 58px;
    }

    .sec-service {
        padding-bottom: 54px;
    }

    .sec-service__grid {
        width: 100%;
    }

    .sec-service__title .sec-title__en {
        max-width: 760px;
        gap: 26px;
    }

    .service-list__item {
        min-height: 186px;
    }

    .service-list__item img {
        width: 84px;
        height: 84px;
    }

    .service-list__en {
        font-size: 14px;
    }

    .service-list__name {
        font-size: 16px;
    }

    .sec-news {
        padding-top: 54px;
    }

    .sec-news__grid {
        gap: 40px;
    }

    .sec-news__intro {
        max-width: 720px;
        padding-top: 0;
    }

    .sec-news__intro-text {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.85;
    }

    .sec-news__intro .btn-pill {
        min-width: 230px;
        min-height: 58px;
    }

    .news-list {
        gap: 42px;
    }

    .news-card {
        max-width: 760px;
    }

    .news-card__pic img {
        width: 300px;
        height: 214px;
    }

    .news-card__content {
        min-height: 214px;
        margin-left: -64px;
        padding: 28px 40px 24px 98px;
    }

    .news-card__meta {
        font-size: 14px;
    }

    .news-card__title {
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.6;
    }

    .news-card__text {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.75;
    }

    .news-card__footer {
        margin-top: 18px;
        padding-top: 16px;
        font-size: 14px;
    }

    .news-card__footer a {
        font-size: 17px;
    }

    .sec-stats__panel {
        min-height: 106px;
        padding: 20px 28px;
    }

    .sec-stats__item {
        gap: 8px;
        font-size: 16px;
    }

    .sec-stats__item strong {
        font-size: 42px;
    }

    .works-swiper {
        width: 100%;
        max-width: none;
        margin-top: 40px;
        padding-top: 34px;
    }

    .works-swiper .swiper-slide {
        width: min(72vw, 680px);
        transform: translateY(0) scale(0.9);
    }

    .works-swiper .swiper-slide-active {
        transform: translateY(-34px) scale(1);
    }

    .work-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 784 / 496;
    }

    .work-card__caption {
        min-height: 88px;
        padding: 18px 30px;
    }

    .work-card__caption strong {
        font-size: 22px;
    }

    .work-card__caption small {
        font-size: 13px;
    }

    .sec-works__controls {
        width: calc(100vw - 64px);
        max-width: 680px;
        gap: 18px;
        margin-top: 24px;
    }

    .work-arrow,
    .work-arrow--prev,
    .work-arrow--next {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

    .work-arrow:hover {
        transform: scale(1.08);
    }

    .work-arrow,
    .work-arrow img {
        width: 46px;
        height: 46px;
    }

    .sec-works__more .btn-pill {
        min-width: 220px;
    }

    .sec-card__grid {
        width: calc(100vw - 64px);
        gap: 34px;
    }

    .sec-card__pic::before {
        top: calc(
            var(--sec-card-pic-parent-top-gap, 0px) - var(--sec-card-pic-offset)
        );
        left: -100vw;
        right: calc(
            var(--sec-card-pic-parent-right-gap, 0px) +
                var(--sec-card-pic-right-trim)
        );
        bottom: calc(
            var(--sec-card-pic-parent-bottom-gap, 0px) +
                (var(--sec-card-pic-offset) * 3.1)
        );
        width: auto;
        height: auto;
    }

    .sec-card__title {
        font-size: 22px;
        line-height: 1.65;
    }

    .sec-card__text {
        font-size: 15px;
        line-height: 1.85;
    }

    .sec-beyond__lead {
        display: block;
        max-width: 840px;
        margin-left: auto;
        margin-bottom: 34px;
    }

    .sec-beyond__lead span,
    .sec-beyond__lead strong {
        display: inline;
        line-height: 1.8;
    }

    .sec-beyond__lead strong::before {
        margin: 0 14px;
    }

    .beyond-grid {
        gap: 22px;
    }

    .beyond-card {
        min-height: 174px;
        padding: 32px 30px;
    }

    .beyond-card__title {
        font-size: 20px;
    }

    .beyond-card__text {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.75;
    }

    .sec-cta__inner {
        width: calc(100vw - 64px);
        min-height: 0;
        margin-left: 32px;
        padding: 38px 44px;
        gap: 24px;
    }

    .sec-cta__inner > :first-child {
        text-align: left;
    }

    .sec-cta__actions {
        margin-right: 0;
        justify-content: flex-start;
    }

    .sec-cta__title {
        font-size: 23px;
    }

    .sec-cta .btn-white {
        min-width: 190px;
    }

    .sec-contact__title {
        font-size: 46px;
    }

    .contact-list__item {
        min-height: 136px;
    }

    .contact-list__item img {
        width: 52px;
        height: 52px;
    }

    .contact-list__label {
        font-size: 16px;
    }

    .contact-list__value {
        font-size: 15px;
    }

    .site-footer__nav {
        gap: 34px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .site-header__inner {
        height: 68px;
    }

    .site-header__logo img {
        width: 260px;
    }

    .sec-banner {
        min-height: 680px;
    }

    .sec-banner__content {
        width: min(640px, calc(100vw - 64px));
        margin-left: 32px;
        padding-top: 250px;
    }

    .sec-banner__brand {
        font-size: 22px;
    }

    .sec-banner__en {
        font-size: 52px;
    }

    .sec-banner__actions {
        margin-top: 30px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        min-width: 160px;
        min-height: 44px;
        font-size: 15px;
    }

    .sec-about .container {
        display: block;
    }

    .sec-about__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sec-about__left {
        grid-column: 1;
        grid-row: 1;
        width: min(620px, 100%);
        margin-top: -50px;
    }

    .sec-about__body {
        grid-column: 1;
        grid-row: 2;
        max-width: 680px;
        padding-top: 0;
    }

    .sec-about__local {
        width: 100%;
        text-align: right;
    }

    .sec-service__grid {
        margin-top: 42px;
    }

    .service-list {
        max-width: 600px;
    }

    .sec-service__photo {
        max-width: 620px;
    }

    .news-card {
        grid-template-columns: 280px 1fr;
    }

    .news-card__pic img {
        width: 280px;
        height: 200px;
    }

    .news-card__content {
        margin-left: -58px;
        padding: 26px 32px 22px 86px;
    }

    .sec-card__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .sec-card__pic::before {
        --sec-card-pic-offset: 30px;
        --sec-card-pic-right-trim: 120px;
    }

    .beyond-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .beyond-card:nth-child(3),
    .beyond-card:nth-child(4) {
        order: initial;
    }

    .sec-cta__actions {
        flex-wrap: wrap;
    }

    .contact-list {
        gap: 0;
    }

    .contact-list__value {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .container,
    .site-header__inner,
    .sec-banner__content,
    .sec-stats__panel {
        width: calc(100vw - (var(--mobile-gutter) * 2));
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .site-header__inner {
        height: 64px;
    }

    .site-header__logo img {
        width: 240px;
        height: auto;
        max-width: calc(100vw - 76px);
    }

    .mobile-menu {
        top: 78px;
    }

    .sec-title__en {
        font-size: 46px;
    }

    .sec-title__zh {
        margin-top: 12px;
        font-size: 29px;
    }

    .sec-banner {
        position: relative;
        min-height: 0;
        padding: 0 0 56px;
        overflow: visible;
    }

    .sec-banner__swiper {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 960 / 1400;
        overflow: hidden;
    }

    .sec-banner__slide {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .sec-banner__slide picture,
    .sec-banner__slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .sec-banner__slide img {
        object-fit: cover;
        object-position: center top;
    }

    .sec-banner__content {
        position: relative;
        margin-top: -50vw;
        padding-top: 0;
        z-index: 2;
    }

    .sec-banner__brand {
        font-size: 16px;
    }

    .sec-banner__headline {
        margin-top: 6px;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }

    .sec-banner__en {
        margin-top: 10px;
        font-size: 38px;
        line-height: 1.1;
    }

    .sec-banner__actions {
        gap: 10px;
        margin-top: 22px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        flex: 0 0 auto;
        min-width: 120px;
        min-height: 38px;
        padding: 8px 18px;
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .sec-banner__actions .btn-pill::after,
    .sec-banner__actions .btn-outline::after {
        margin-left: 10px;
        font-size: 20px;
    }

    .sec-about {
        padding-bottom: 32px;
        background-image: url("../images/00-hp/ab_bg960.png");
    }

    .sec-about .container {
        display: flex;
        flex-direction: column;
    }

    .sec-about__grid {
        display: contents;
    }

    .sec-about__left {
        grid-column: 1;
        grid-row: 1;
        margin-top: -6vw;
    }

    .sec-about__pic {
        margin-bottom: 0;
    }

    .sec-about__pic img {
        width: 100%;
        height: auto;
        border-radius: 0 24px 0 0;
    }

    .sec-about__body {
        order: 3;
        padding-top: 24px;
    }

    .sec-about__en {
        font-size: 36px;
        letter-spacing: 0.06em;
    }

    .sec-about__subtitle {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.7;
        letter-spacing: 0.06em;
    }

    .sec-about__text {
        margin-top: 16px;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.85;
    }

    .sec-about__btn {
        margin-top: 24px;
        min-width: 140px;
        min-height: 40px;
        padding: 8px 20px;
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .sec-about__btn::after {
        margin-left: 10px;
        font-size: 20px;
    }

    .sec-about__local {
        order: 2;
        margin-top: 12px;
        text-align: end;
    }

    .sec-about__local strong {
        display: block;
        font-size: 18px;
        letter-spacing: 0.08em;
        margin-bottom: 6px;
    }

    .sec-about__local span {
        margin: 4px 0 0 12px;
        font-size: 15px;
        letter-spacing: 0.04em;
    }

    .sec-about__local span::before {
        margin-right: 2px;
    }

    .sec-service {
        padding: clamp(20px, 5vw, 32px) 0 clamp(28px, 7vw, 44px);
    }

    .sec-service__title {
        gap: 12px;
    }

    .sec-service__title .sec-title__en {
        font-size: clamp(36px, 9vw, 46px);
        letter-spacing: 0.08em;
    }

    .sec-service__title .sec-title__zh {
        font-size: clamp(20px, 5.5vw, 28px);
    }

    .sec-service .container {
        display: flex;
        flex-direction: column;
    }

    .sec-service__grid {
        display: contents;
    }

    .service-list {
        order: 1;
        margin-top: 28px;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-list__item {
        min-height: clamp(200px, 56vw, 290px);
    }

    .service-list__item img {
        width: clamp(82px, 26vw, 130px);
        height: clamp(82px, 26vw, 130px);
    }

    .service-list__en {
        margin-top: clamp(12px, 4vw, 22px);
        font-size: clamp(13px, 3.6vw, 18px);
        letter-spacing: 0.08em;
    }

    .service-list__name {
        margin-top: clamp(6px, 1.6vw, 10px);
        font-size: clamp(15px, 4.2vw, 22px);
        letter-spacing: 0.04em;
    }

    .sec-service__more {
        order: 2;
        margin-top: clamp(24px, 6vw, 38px);
    }

    .sec-service__more .btn-pill {
        min-width: clamp(180px, 48vw, 240px);
        min-height: clamp(46px, 12vw, 60px);
        padding: 10px 26px;
        font-size: clamp(14px, 3.8vw, 18px);
        letter-spacing: 0.06em;
    }

    .sec-service__more .btn-pill::after {
        margin-left: 12px;
        font-size: clamp(20px, 5vw, 26px);
    }

    .sec-service__photo {
        order: 3;
        margin-top: clamp(28px, 7vw, 44px);
        padding: 0;
    }

    .sec-service__photo img {
        width: 100%;
        height: auto;
    }

    .sec-news {
        padding: clamp(28px, 7vw, 44px) 0 clamp(70px, 16vw, 108px);
        background-image: url("../images/00-hp/news_bg960.png");
    }

    .sec-news__grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 8vw, 56px);
    }

    .sec-news__intro {
        padding-top: 0;
    }

    .sec-news__intro .sec-title__en {
        font-size: clamp(40px, 11vw, 56px);
    }

    .sec-news__intro .sec-title__zh {
        margin-top: clamp(8px, 2.4vw, 16px);
        font-size: clamp(22px, 6vw, 32px);
    }

    .sec-news__intro-text {
        margin-top: clamp(14px, 4vw, 24px);
        font-size: clamp(13px, 3.6vw, 17px);
        line-height: 1.85;
    }

    .sec-news__intro .btn-pill {
        margin-top: clamp(20px, 5vw, 32px);
        min-width: clamp(180px, 48vw, 240px);
        min-height: clamp(46px, 12vw, 60px);
        padding: 10px 26px;
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .sec-news__intro .btn-pill::after {
        margin-left: 12px;
        font-size: clamp(20px, 5vw, 26px);
    }

    .news-list {
        gap: clamp(30px, 8vw, 48px);
    }

    .news-card {
        position: relative;
        grid-template-columns: 1fr;
        max-width: none;
        margin: 0;
    }

    .news-card__pic {
        position: relative;
        z-index: 2;
        width: 74%;
        margin: 0 auto;
    }

    .news-card__pic img {
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 200;
        margin: 0;
        border-radius: clamp(18px, 5vw, 28px) 0 clamp(18px, 5vw, 28px)
            clamp(18px, 5vw, 28px);
    }

    .news-card__content {
        position: relative;
        z-index: 1;
        min-height: 0;
        width: 100%;
        margin: clamp(-42px, -10vw, -30px) 0 0;
        padding: clamp(54px, 14vw, 72px) clamp(20px, 5.5vw, 30px)
            clamp(20px, 5.5vw, 26px);
        border-radius: clamp(14px, 4vw, 22px);
    }

    .news-card__meta {
        font-size: clamp(12px, 3.4vw, 16px);
    }

    .news-card__title {
        margin-top: clamp(10px, 3vw, 18px);
        font-size: clamp(15px, 4.4vw, 21px);
        line-height: 1.6;
    }

    .news-card__text {
        margin-top: clamp(10px, 2.6vw, 16px);
        font-size: clamp(13px, 3.6vw, 16px);
        line-height: 1.8;
    }

    .news-card__footer {
        margin-top: clamp(16px, 4vw, 24px);
        padding-top: clamp(12px, 3vw, 18px);
        font-size: clamp(12px, 3.2vw, 15px);
    }

    .news-card__footer a {
        font-size: clamp(14px, 4vw, 18px);
    }

    .news-card__footer a i {
        font-size: clamp(16px, 4.6vw, 20px);
    }

    .sec-stats {
        margin-top: clamp(-44px, -10vw, -28px);
        margin-bottom: clamp(20px, 6vw, 36px);
    }

    .sec-stats__panel {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: clamp(20px, 5vw, 32px) clamp(28px, 8vw, 48px);
        border-radius: 0 clamp(12px, 3.6vw, 22px) 0 clamp(12px, 3.6vw, 22px);
        gap: 0;
    }

    .sec-stats__item {
        padding: clamp(16px, 4.5vw, 24px) 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
        font-size: clamp(16px, 4.4vw, 22px);
        gap: 10px;
    }

    .sec-stats__item:last-child {
        border-bottom: 0;
    }

    .sec-stats__item strong {
        font-size: clamp(40px, 11vw, 56px);
    }

    .sec-works {
        margin-top: 0;
        padding: 1px 0 clamp(52px, 13vw, 86px);
        background-image: url("../images/00-hp/work_bg960.png");
    }

    .sec-title__desc {
        margin-top: clamp(16px, 4.5vw, 28px);
        font-size: clamp(13px, 3.6vw, 17px);
        line-height: 1.9;
    }

    .works-swiper {
        width: 100%;
        max-width: none;
        margin-top: clamp(26px, 7vw, 42px);
        padding: 0;
        overflow: visible;
    }

    .works-swiper .swiper-slide,
    .works-swiper .swiper-slide-active {
        width: min(83vw, 784px);
        transform: none;
        opacity: 1;
        filter: none;
    }

    .work-card {
        border-radius: clamp(10px, 3.2vw, 18px);
    }

    .work-card__link {
        top: clamp(8px, 2.6vw, 14px);
        right: clamp(8px, 2.6vw, 14px);
        width: clamp(34px, 9.5vw, 46px);
        height: clamp(34px, 9.5vw, 46px);
    }

    .work-card__caption {
        min-height: clamp(58px, 16vw, 86px);
        padding: clamp(12px, 3.6vw, 18px) clamp(18px, 5vw, 30px);
    }

    .work-card__caption strong {
        font-size: clamp(16px, 4.6vw, 24px);
    }

    .work-card__caption small {
        margin-top: clamp(4px, 1.4vw, 8px);
        font-size: clamp(10px, 2.8vw, 14px);
    }

    .work-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 784 / 496;
        object-fit: cover;
    }

    .sec-works__controls {
        width: 100%;
        max-width: none;
        margin-top: clamp(18px, 5vw, 30px);
        flex-wrap: nowrap;
        justify-content: center;
        gap: clamp(10px, 3vw, 18px);
    }

    .work-arrow,
    .work-arrow--prev,
    .work-arrow--next {
        position: static;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
    }

    .work-arrow:hover {
        transform: scale(1.08);
    }

    .sec-works__more .btn-pill {
        min-width: clamp(156px, 45vw, 220px);
        min-height: clamp(40px, 10.5vw, 52px);
        padding: 9px clamp(18px, 5vw, 24px);
        font-size: clamp(12px, 3.35vw, 15px);
    }

    .sec-works__more .btn-pill::after {
        margin-left: 12px;
        font-size: clamp(20px, 5vw, 26px);
    }

    .work-arrow,
    .work-arrow img {
        width: clamp(34px, 9vw, 46px);
        height: clamp(34px, 9vw, 46px);
    }

    .sec-growth {
        background-image: url("../images/00-hp/card_bg960.png");
        background-position: center top;
        background-size: cover;
    }

    .sec-card {
        padding: clamp(34px, 9vw, 58px) 0 clamp(28px, 7vw, 46px);
    }

    .sec-card__grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 6vw, 34px);
    }

    .sec-card__pic img {
        width: 100%;
        height: auto;
        border-radius: 0 clamp(14px, 4vw, 22px) clamp(14px, 4vw, 22px)
            clamp(14px, 4vw, 22px);
    }

    .sec-card__pic::before {
        --sec-card-pic-offset: clamp(20px, 6vw, 30px);
        --sec-card-pic-right-trim: clamp(44px, 14vw, 64px);
        left: calc(-1 * var(--mobile-gutter));
        width: calc(
            100% + var(--mobile-gutter) - var(--sec-card-pic-right-trim)
        );
        border-radius: 0 clamp(14px, 4vw, 22px) clamp(14px, 4vw, 22px) 0;
    }

    .sec-card__title {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.75;
    }

    .sec-card__text {
        margin-top: clamp(12px, 3.6vw, 20px);
        font-size: clamp(13px, 3.55vw, 16px);
        line-height: 1.9;
    }

    .sec-card .btn-pill {
        min-width: clamp(160px, 43vw, 220px);
        min-height: clamp(40px, 10.5vw, 52px);
        margin-top: clamp(18px, 5vw, 28px);
        padding: 9px 22px;
        font-size: clamp(12px, 3.35vw, 15px);
    }

    .sec-beyond {
        padding: clamp(14px, 4vw, 28px) 0 0;
    }

    .sec-beyond__lead {
        display: block;
        margin-bottom: clamp(22px, 6vw, 34px);
    }

    .sec-beyond__lead span,
    .sec-beyond__lead strong {
        display: inline;
        font-size: clamp(13px, 3.75vw, 18px);
        line-height: 1.8;
    }

    .sec-beyond__lead strong::before {
        margin: 0 10px;
    }

    .beyond-grid {
        grid-template-columns: 1fr;
        gap: clamp(12px, 3.6vw, 16px);
    }

    .beyond-card:nth-child(3),
    .beyond-card:nth-child(4) {
        order: initial;
    }

    .beyond-card {
        min-height: clamp(112px, 32vw, 138px);
        padding: clamp(20px, 5.8vw, 26px) clamp(22px, 6vw, 30px);
        border-radius: 0 0 clamp(14px, 4vw, 18px) 0;
    }

    .beyond-card__title {
        font-size: clamp(15px, 4.25vw, 20px);
    }

    .beyond-card__text {
        margin-top: clamp(12px, 3.8vw, 18px);
        font-size: clamp(12px, 3.35vw, 15px);
        line-height: 1.75;
    }

    .sec-cta {
        margin-top: 0;
        margin-bottom: clamp(-180px, -45vw, -120px);
        padding: 0;
        transform: translateY(-100%);
    }

    .sec-cta__inner {
        width: calc(100% - clamp(12px, 4vw, 24px));
        margin-left: clamp(12px, 4vw, 24px);
        min-height: 0;
        padding: clamp(34px, 9vw, 52px) clamp(24px, 6vw, 40px)
            clamp(38px, 10vw, 56px) clamp(54px, 14vw, 80px);
        border-radius: 16px 0 0 0;
    }

    .sec-cta__inner > :first-child {
        width: 100%;
    }

    .sec-cta__actions {
        margin-right: 0;
    }

    .sec-cta__title {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.55;
    }

    .sec-cta__text {
        margin-top: clamp(8px, 2.4vw, 14px);
        font-size: clamp(14px, 3.8vw, 17px);
        line-height: 1.7;
    }

    .sec-cta__actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: clamp(12px, 3.6vw, 16px);
    }

    .sec-cta .btn-white {
        min-width: clamp(184px, 58vw, 226px);
        min-height: clamp(44px, 11vw, 52px);
        padding: 10px 24px;
        font-size: clamp(14px, 3.8vw, 17px);
    }

    .sec-cta .btn-white:nth-child(2) {
        min-width: clamp(184px, 58vw, 226px);
    }

    .sec-contact {
        padding: 0 0 52px;
    }

    .sec-contact__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .sec-contact__title {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.18;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .contact-list__item {
        min-height: 180px;
        padding-bottom: clamp(24px, 7vw, 40px);
        position: relative;
    }

    .contact-list__item::before {
        display: none;
    }

    .contact-list__item:last-child::after {
        top: auto;
        right: auto;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        background: transparent;
    }

    .contact-list__item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: clamp(56px, 17vw, 88px);
        height: 1px;
        background: var(--c-contact-purple);
    }

    .contact-list__item:last-child {
        padding-bottom: 0;
    }

    .contact-list__value {
        font-size: 16px;
    }

    .site-footer {
        padding: 52px 0 34px;
        text-align: center;
    }

    .site-footer__top {
        gap: 28px;
    }

    .site-footer__logo img {
        width: 276px;
        margin: 0 auto;
    }

    .site-footer__nav {
        display: grid;
        gap: 16px;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__info {
        display: grid;
        gap: 8px;
        margin-top: 28px;
        padding-bottom: 28px;
        font-size: 16px;
        line-height: 1.8;
    }

    .site-footer__info span {
        justify-content: center;
    }

    .site-footer__counts {
        gap: 26px;
        font-size: 14px;
    }

    .site-footer__copy {
        font-size: 12px;
        line-height: 1.8;
    }

    .back-top {
        right: 16px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Hero / Header 五斷點契約：只覆蓋首頁首屏，不牽動後續區塊 */
.site-header__logo picture {
    display: block;
}

@media (max-width: 575.98px) {
    .site-header__inner {
        width: calc(100vw - 32px);
        height: 60px;
    }

    .site-header__logo img {
        width: min(220px, calc(100vw - 76px));
        height: auto;
    }

    .menu-toggle {
        width: 26px;
        height: 22px;
    }

    .sec-banner {
        min-height: 0;
    }

    .sec-banner__content {
        width: calc(100vw - 32px);
        padding-top: 0;
        text-align: left;
    }

    .sec-banner__brand {
        font-size: 16px;
        line-height: 1.2;
    }

    .sec-banner__headline {
        margin-top: 6px;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }

    .sec-banner__en {
        margin-top: 10px;
        font-size: 38px;
        line-height: 1.1;
    }

    .sec-banner__actions {
        gap: 10px;
        margin-top: 22px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        flex: 0 0 auto;
        min-width: 120px;
        min-height: 38px;
        padding: 8px 18px;
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .sec-banner__actions .btn-pill::after,
    .sec-banner__actions .btn-outline::after {
        margin-left: 10px;
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .site-header__inner {
        width: calc(100vw - 48px);
        height: 68px;
    }

    .site-header__logo img {
        width: min(260px, calc(100vw - 120px));
        height: auto;
    }

    .sec-banner {
        min-height: 0;
    }

    .sec-banner__content {
        width: min(520px, calc(100vw - 48px));
        padding-top: 0;
        text-align: left;
    }

    .sec-banner__brand {
        font-size: 18px;
        line-height: 1.25;
    }

    .sec-banner__headline {
        margin-top: 8px;
        line-height: 1.55;
    }

    .sec-banner__en {
        margin-top: 10px;
        font-size: 44px;
        line-height: 1.08;
    }

    .sec-banner__actions {
        gap: 12px;
        margin-top: 24px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        min-width: 168px;
        min-height: 46px;
        padding: 9px 20px;
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .site-header__inner {
        width: calc(100vw - 64px);
        height: 92px;
    }

    .site-header__logo img {
        width: 310px;
    }

    .sec-banner {
        min-height: 760px;
    }

    .sec-banner__slide img {
        object-fit: cover;
        object-position: center top;
    }

    .sec-banner__content {
        width: min(760px, calc(100vw - 64px));
        margin-left: 32px;
        margin-right: auto;
        padding-top: 288px;
        text-align: left;
    }

    .sec-banner__brand {
        font-size: 26px;
        line-height: 1.22;
    }

    .sec-banner__headline {
        margin-top: 10px;
        line-height: 1.45;
    }

    .sec-banner__en {
        margin-top: 12px;
        font-size: 58px;
        line-height: 1.02;
    }

    .sec-banner__actions {
        gap: 16px;
        margin-top: 36px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        min-width: 178px;
        min-height: 46px;
        padding: 9px 26px;
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .site-header__inner {
        height: 68px;
    }

    .site-header__logo img {
        width: 260px;
    }

    .sec-banner {
        min-height: 680px;
    }

    .sec-banner__content {
        width: min(640px, calc(100vw - 64px));
        padding-top: 250px;
    }

    .sec-banner__brand {
        font-size: 22px;
    }

    .sec-banner__en {
        font-size: 52px;
    }

    .sec-banner__actions {
        margin-top: 30px;
    }

    .sec-banner__actions .btn-pill,
    .sec-banner__actions .btn-outline {
        min-width: 160px;
        min-height: 44px;
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header__inner {
        height: 104px;
        gap: 14px;
    }

    .site-header__logo img {
        width: 240px;
    }

    .site-nav {
        gap: 12px;
    }

    .site-nav__link {
        min-width: 58px;
        font-size: 13px;
        letter-spacing: 0.03em;
    }

    .site-nav__link span {
        margin-top: 4px;
        font-size: 10px;
    }

    .site-nav__link.is-active::after,
    .site-nav__link:hover::after {
        bottom: -12px;
        width: 48px;
    }

    .site-header__line,
    .site-header__line img {
        width: 132px;
        height: 46px;
    }

    .sec-banner__content {
        width: min(560px, calc(100vw - 64px));
    }

    .sec-banner__brand {
        font-size: 24px;
    }

    .sec-banner__en {
        font-size: 52px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-header__inner,
    .sec-banner__content {
        width: calc(100vw - 80px);
    }

    .site-header__inner {
        height: 96px;
        gap: 28px;
    }

    .site-header__logo img {
        width: 310px;
    }

    .site-nav {
        gap: 28px;
    }

    .site-nav__link {
        min-width: 70px;
        font-size: 15px;
    }

    .site-nav__link span {
        font-size: 12px;
    }

    .site-header__line,
    .site-header__line img {
        width: 168px;
        height: 58px;
    }

    .sec-banner {
        min-height: 820px;
    }

    .sec-banner__content {
        padding-top: 300px;
    }

    .sec-banner__brand {
        font-size: 28px;
        line-height: 1.22;
    }

    .sec-banner__headline {
        line-height: 1.45;
    }

    .sec-banner__en {
        font-size: 66px;
        line-height: 1;
    }

    .sec-banner__actions {
        margin-top: 38px;
    }
}

@media (min-width: 1400px) {
    .site-header__inner,
    .sec-banner__content {
        width: min(var(--wide-max), calc(100% - 80px));
    }

    .site-header__inner {
        height: 100px;
    }

    .site-header__logo img {
        width: 360px;
    }

    .sec-banner {
        min-height: 895px;
    }

    .sec-banner__content {
        padding-top: 335px;
    }

    .sec-banner__brand {
        font-size: 32px;
        line-height: 1.2;
    }

    .sec-banner__headline {
        margin-top: 12px;
        line-height: 1.45;
    }

    .sec-banner__en {
        margin-top: 14px;
        font-size: 76px;
        line-height: 0.98;
    }

    .sec-banner__actions {
        gap: 18px;
        margin-top: 46px;
    }
}

/* Hamburger & mobile menu: appear below 992px */
@media (max-width: 991.98px) {
    .site-nav,
    .site-header__line {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 42px;
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(79, 57, 124, 0.3);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
    }

    .mobile-menu-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        width: 63vw;
        min-width: 280px;
        max-width: 320px;
        padding: 22px 32px 96px;
        background: linear-gradient(180deg, #ffffff 0%, #f4f1f8 100%);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
        box-shadow: -12px 0 28px rgba(55, 43, 127, 0.47);
    }

    .mobile-menu__close {
        align-self: flex-end;
        width: 28px;
        height: 28px;
        padding: 0;
        margin: 0 0 6px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .mobile-menu__close svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .mobile-menu__logo {
        display: flex;
        justify-content: center;
        padding: 14px 0 28px;
    }

    .mobile-menu__logo img {
        width: 62px;
        height: auto;
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__link {
        position: relative;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        padding: 16px 4px;
        color: var(--c-menu);
        border-bottom: 1px solid #ebe9f2;
        font-weight: 500;
    }

    .mobile-menu__link:last-child {
        border-bottom: 0;
    }

    .mobile-menu__zh {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: #5b4e77;
        line-height: 1;
    }

    .mobile-menu__en {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.14em;
        color: #ae99dd;
        line-height: 1;
    }

    .mobile-menu__link.is-active .mobile-menu__zh {
        background: linear-gradient(90deg, #6e4094 0%, #9972ba 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .mobile-menu__link.is-active::after {
        content: "";
        position: absolute;
        left: 4px;
        bottom: -1px;
        width: 64px;
        height: 2px;
        background: linear-gradient(90deg, #9780cd 0%, #bbaef2 100%);
        border-radius: 2px;
    }

    .mobile-action-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        height: 42px;
    }

    .mobile-action-bar__btn {
        flex: 1 1 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.06em;
    }

    .mobile-action-bar__btn--phone {
        background: linear-gradient(90deg, #866bc3 0%, #7e74e3 100%);
    }

    .mobile-action-bar__btn--line {
        background: linear-gradient(90deg, #06c755 0%, #00b900 100%);
    }

    .mobile-action-bar__btn--phone i {
        font-size: 14px;
    }

    .mobile-action-bar__btn--line img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .mobile-action-bar__btn:hover,
    .mobile-action-bar__btn:focus {
        color: #ffffff;
    }

    body {
        padding-bottom: 42px;
    }

    .back-top {
        bottom: 58px;
    }
}

@media (max-width: 575.98px) {
    .mobile-menu {
        padding: 18px 24px 84px;
    }
}

/* About page */
.about-page__section {
    --about-purple: #886dc4;
    --about-purple-dark: #6a42a1;
    --about-text: #5d5d5d;
    --about-black: #35323a;
    --about-symbol: #cda9f2;
    --about-line: #9762c4;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--about-text);
    font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.about-page__section h1,
.about-page__section h2,
.about-page__section h3,
.about-page__section p {
    margin: 0;
}

.about-page__section img {
    display: block;
    max-width: 100%;
}

.page-hero,
.about-page__intro,
.about-page__milestone,
.about-page__cert {
    position: relative;
    overflow: hidden;
}

.page-hero__bg,
.about-page__milestone-bg,
.about-page__cert-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-page__milestone-bg,
.about-page__cert-bg {
    display: flex;
    align-items: flex-end;
}

.about-page__milestone-bg img,
.about-page__cert-bg img {
    width: 100%;
    height: auto;
}

/* Shared soft-top background (about-page intro + services-page web) */
.page-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.page-bg-top img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}

.page-hero {
    overflow: visible;
    z-index: 2;
}

.page-hero__bg {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

@media (min-width: 576px) {
    .page-hero__bg { aspect-ratio: 1440 / 700; }
}

@media (min-width: 1600px) {
    .page-hero__bg { aspect-ratio: 1920 / 777; }
}

@media (min-width: 2200px) {
    .page-hero__bg { aspect-ratio: 2560 / 1030; }
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(1.1);
    filter: blur(16px);
}

.page-hero__bg.is-loaded img {
    animation: heroReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(16px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.page-hero__circle {
    position: absolute;
    right: 0;
    bottom: calc(
        var(--page-hero-circle-width, clamp(104px, 7.2vw, 142px)) * -0.86
    );
    z-index: 2;
    width: var(--page-hero-circle-width, clamp(104px, 7.2vw, 142px));
    max-width: none !important;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.7);
}

.page-hero__title p,
.page-hero__title h1,
.page-hero__slogan {
    opacity: 0;
}

.page-hero__title p { transform: translateY(-20px); }
.page-hero__title h1 { transform: translateX(-30px); }
.page-hero__slogan { transform: translateY(30px); }

.page-hero.is-loaded .page-hero__title p {
    animation: heroTextFadeDown 0.9s ease-out 0.25s forwards;
}
.page-hero.is-loaded .page-hero__title h1 {
    animation: heroTextFadeRight 1s ease-out 0.45s forwards;
}
.page-hero.is-loaded .page-hero__slogan {
    animation: heroTextFadeUp 1s ease-out 0.65s forwards;
}
.page-hero.is-loaded .page-hero__circle {
    animation: heroCircleZoom 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

@keyframes heroTextFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTextFadeRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroTextFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCircleZoom {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

.page-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.page-hero__title {
    position: absolute;
    left: 8.125%;
    top: 48%;
}

.page-hero__title p {
    color: #866bc3;
    font-size: clamp(34px, 2.5vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
}

.page-hero__title h1 {
    margin-top: 17px;
    color: #35323a;
    font-size: clamp(20px, 1.4vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.06em;
}

.page-hero__slogan {
    position: absolute;
    left: 8.125%;
    bottom: 8.3%;
    width: 19%;
    color: #ffffff;
    text-align: center;
}

.page-hero__slogan strong {
    display: block;
    font-size: clamp(12px, 1vw, 22px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.page-hero__slogan span {
    display: block;
    margin-top: 10px;
    font-size: clamp(8px, 0.88vw, 19px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.07em;
}

@media (min-width: 1600px) {
    .page-hero {
        --page-hero-circle-width: clamp(132px, 7.4vw, 188px);
    }

    .page-hero__title p {
        font-size: clamp(46px, 2.72vw, 70px);
    }

    .page-hero__title h1 {
        margin-top: 20px;
        font-size: clamp(26px, 1.55vw, 40px);
    }

    .page-hero__slogan strong {
        font-size: clamp(19px, 1.05vw, 27px);
    }

    .page-hero__slogan span {
        margin-top: 13px;
        font-size: clamp(16px, 0.9vw, 22px);
    }
}

.about-page__intro {
    min-height: clamp(500px, 39.06vw, 750px);
    margin-top: -1px;
}

.about-page__intro-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(112px, 7.35vw, 141px);
}

.about-page__intro-row {
    --bs-gutter-x: clamp(72px, 5.5vw, 106px);
}

.about-page__intro-photo {
    position: relative;
    width: min(832px, 100%);
    padding: 0;
}

.about-page__intro-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 0 0 0 30px;
}

.about-page__intro-copy {
    max-width: 690px;
    padding-top: 8px;
}

.about-page__intro-copy h2 {
    color: #886dc4;
    font-size: clamp(20px, 1.35vw, 26px);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.08em;
}

.about-page__intro-copy p {
    margin-top: clamp(27px, 1.95vw, 38px);
    color: #5d5d5d;
    font-size: clamp(17px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
}

.about-page__advantages {
    position: relative;
    z-index: 1;
    padding: clamp(55px, 4.15vw, 80px) 0 clamp(72px, 5.2vw, 100px);
    background: #f6f5fe;
}

.about-page__section-title {
    color: #6e4195;
    font-size: clamp(26px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.08em;
}

.about-page__section-title span {
    color: #cda9f2;
    font-size: 0.74em;
    vertical-align: 0.12em;
}

.about-page__adv-row {
    --bs-gutter-x: clamp(56px, 5vw, 96px);
    margin-top: clamp(54px, 4.05vw, 78px);
}

.about-page__adv-item {
    max-width: 210px;
    margin: 0 auto;
    text-align: center;
}

.about-page__adv-item img {
    width: clamp(74px, 5.42vw, 104px);
    height: clamp(74px, 5.42vw, 104px);
    margin: 0 auto;
    object-fit: contain;
}

.about-page__adv-item h3 {
    margin-top: 24px;
    color: #35323a;
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.about-page__adv-item p {
    margin-top: 24px;
    color: #5d5d5d;
    font-size: clamp(16px, 0.94vw, 18px);
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
    letter-spacing: 0.04em;
}

.about-page__milestone {
    min-height: clamp(896px, 62.5vw, 1200px);
    padding-bottom: clamp(180px, 13vw, 260px);
}

.about-page__milestone-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(90px, 5.7vw, 110px);
}

.about-page__milestone-visual {
    position: relative;
    min-height: 980px;
}

.about-page__fly {
    position: absolute;
    left: 0;
    top: 196px;
    width: min(660px, 96%);
}

.about-page__milestone-word {
    position: absolute;
    right: 42px;
    top: 520px;
    color: #d4caf8;
    font-size: clamp(66px, 5vw, 96px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    writing-mode: vertical-rl;
}

.about-page__milestone-copy {
    max-width: 890px;
}

.about-page__milestone-copy > h2 {
    color: #886dc4;
    font-size: clamp(23px, 1.45vw, 28px);
    font-weight: 500;
    line-height: 1.82;
    letter-spacing: 0.08em;
}

.about-page__timeline {
    --timeline-line-left: 29px;
    --timeline-card-offset: 46px;
    --timeline-card-cover: 25px;
    --timeline-dot-size: 24px;
    --timeline-dot-left: 39px;
    position: relative;
    margin-top: 44px;
    padding-left: var(--timeline-card-offset);
}

.about-page__timeline::before {
    content: "";
    position: absolute;
    left: var(--timeline-line-left);
    top: 0;
    bottom: 0;
    width: 3px;
    background: #9762c4;
}

.about-page__timeline-card {
    position: relative;
    min-height: 164px;
    margin-left: calc(
        (var(--timeline-card-offset) + var(--timeline-card-cover)) * -1
    );
    margin-bottom: 33px;
    padding: 29px 46px 28px
        calc(58px + var(--timeline-card-offset) + var(--timeline-card-cover));
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        rgba(239, 244, 255, 0.8) 0%,
        rgba(248, 243, 252, 0.8) 48%,
        rgba(255, 255, 255, 0.8) 100%
    );
    box-shadow: 0 14px 30px rgba(14, 5, 10, 0.15);
}

.about-page__timeline-card:nth-child(even) {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(237, 224, 247, 0.85);
}

.about-page__timeline-dot {
    position: absolute;
    left: var(--timeline-dot-left);
    top: 45px;
    z-index: 2;
    width: var(--timeline-dot-size);
    height: var(--timeline-dot-size);
    border: 7px solid #9762c4;
    border-radius: 50%;
    background: #ffffff;
}

.about-page__timeline-year {
    color: #886dc4;
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
}

.about-page__timeline-card h3 {
    margin-top: 16px;
    color: #6a42a1;
    font-size: clamp(22px, 1.45vw, 28px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.05em;
}

.about-page__timeline-card p:not(.about-page__timeline-year) {
    margin-top: 21px;
    color: #5d5d5d;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.04em;
}

.about-page__cert {
    min-height: clamp(520px, 31.25vw, 600px);
    z-index: 2;
    margin-top: clamp(-140px, -7vw, -88px);
}

.about-page__cert-bg {
    inset: auto 0 auto 0;
    top: clamp(48px, 3.5vw, 68px);
    width: 100%;
    height: auto;
}

.about-page__cert-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(54px, 4vw, 77px);
    padding-bottom: clamp(58px, 4.15vw, 80px);
}

.about-page__cert-carousel {
    position: relative;
    width: min(592px, 100%);
    margin: 0 auto;
}

.about-page__cert-carousel .carousel-inner {
    overflow: visible;
}

.about-page__cert-carousel.carousel-fade .carousel-item {
    transition: opacity 0.72s ease-in-out;
}

.about-page__cert-carousel .carousel-item img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(12, 3, 6, 0.27);
}

.about-page__cert-carousel .carousel-control-prev,
.about-page__cert-carousel .carousel-control-next {
    width: 32px;
    height: 56px;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
}

.about-page__cert-carousel .carousel-control-prev {
    left: -72px;
}

.about-page__cert-carousel .carousel-control-next {
    right: -72px;
}

.about-page__cert-carousel .carousel-control-prev img,
.about-page__cert-carousel .carousel-control-next img {
    width: 32px;
    height: 56px;
}

.about-page__cert-panel {
    --cert-panel-edge: max(24px, calc((100vw - 1440px) / 2 + 24px));
    width: calc(100% + var(--cert-panel-edge));
    max-width: none;
    min-height: 370px;
    margin-left: auto;
    padding: 58px 72px 50px;
    border-radius: 28px 0 0 0;
    background: #9762c4;
    color: #ffffff;
}

.about-page__cert-panel h2 {
    max-width: 890px;
    color: #ffffff;
    font-size: clamp(23px, 1.45vw, 28px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.about-page__cert-panel p {
    max-width: 890px;
    margin-top: 29px;
    color: #ffffff;
    font-size: clamp(18px, 1.15vw, 22px);
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.06em;
}

.about-page__cert-panel p strong {
    color: #f7d2ed;
    font-weight: 500;
}

.about-page__security {
    position: relative;
    z-index: 3;
    --security-shape-w: clamp(390px, 26.67vw, 512px);
    --security-shape-right: -72px;
    --security-gradient-end: calc(
        100% - (var(--security-shape-w) * 0.5) - var(--security-shape-right)
    );
    overflow: visible;
    padding: 0 0 clamp(62px, 3.65vw, 70px);
    background: transparent;
}

.about-page__security::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        #f2eaf8 0%,
        #f6f5fe var(--security-gradient-end),
        #ffffff var(--security-gradient-end),
        #ffffff 100%
    );
    pointer-events: none;
}

.about-page__security > .container {
    position: relative;
    z-index: 2;
    width: min(1608px, calc(100% - 96px));
    max-width: none;
}

.about-page__security-heading {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: clamp(52px, 4.1vw, 78px) auto 0;
    text-align: center;
}

.about-page__security-heading h2 {
    color: #886dc4;
    font-size: clamp(22px, 1.45vw, 28px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.about-page__security-layout {
    position: relative;
    z-index: 2;
    --security-content-w: min(1608px, calc(100vw - 96px));
    --security-edge: calc((100vw - var(--security-content-w)) / 2);
    --security-card-w: clamp(300px, 18.125vw, 348px);
    --security-gap: clamp(42px, 2.604vw, 50px);
    display: grid !important;
    grid-template-columns: repeat(3, var(--security-card-w));
    gap: 46px var(--security-gap);
}

.about-page__security-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: contents;
}

.about-page__security-grid > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
    margin-top: 0;
}

.about-page__security-grid > [class*="col-"]:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.about-page__security-grid > [class*="col-"]:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
}

.about-page__security-grid > [class*="col-"]:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.about-page__security-grid > [class*="col-"]:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.about-page__security-grid > [class*="col-"]:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.about-page__security-layout > .order-lg-1 {
    display: contents;
}

.about-page__security-layout > .order-lg-2 {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    max-width: none;
    padding: 0;
}

.about-page__security-card {
    position: relative;
    min-height: max(var(--security-card-w), 312px);
    padding: 84px 40px 34px;
    border-radius: 24px;
    background: #ffffff;
}

.about-page__security-card img {
    position: absolute;
    top: 58px;
    right: 38px;
    width: 72px;
    height: 72px;
}

.about-page__security-card h3 {
    display: inline-block;
    max-width: calc(100% - 118px);
    color: #886dc4;
    font-size: clamp(21px, 1.35vw, 26px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
}

.about-page__security-card p {
    margin-top: 82px;
    color: #5d5d5d;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.04em;
}

.about-page__security-photo {
    width: calc(
        100vw - var(--security-edge) - (var(--security-card-w) * 2) -
            (var(--security-gap) * 2)
    );
    max-width: none;
    margin: -36px 0 0;
}

.about-page__security-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    border-radius: 0 0 0 30px;
}

.about-page__security-shape {
    position: absolute;
    right: var(--security-shape-right);
    bottom: -118px;
    z-index: 1;
    width: var(--security-shape-w);
    pointer-events: none;
}

.about-page__public {
    position: relative;
    padding: clamp(50px, 3.1vw, 60px) 0 clamp(28px, 2.1vw, 40px);
    background: #ffffff;
}

.about-page__public-title {
    text-align: center;
}

.about-page__public-title h2 {
    color: #35323a;
    font-size: clamp(26px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
}

.about-page__public-title p {
    margin-top: 17px;
    color: #886dc4;
    font-size: clamp(22px, 1.35vw, 26px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
}

.about-page__public-row {
    --bs-gutter-x: clamp(72px, 5.4vw, 104px);
    margin-top: 46px;
}

.about-page__public-photo {
    position: relative;
    width: min(840px, 100%);
    padding: 0;
}

.about-page__public-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 0 26px 26px 26px;
}

.about-page__public-copy {
    max-width: 690px;
}

.about-page__public-copy p,
.about-page__public-copy li {
    color: #5d5d5d;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.04em;
}

.about-page__public-copy p + p {
    margin-top: 34px;
}

.about-page__public-copy h3 {
    margin-top: 34px;
    color: #886dc4;
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.07em;
}

.about-page__public-copy ol {
    margin: 12px 0 0;
    padding-left: 1.4em;
}

.about-page__line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 290px;
    min-height: 74px;
    margin-top: 38px;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #28aa33 0%, #75c948 100%);
    color: #ffffff !important;
    font-size: clamp(18px, 1.15vw, 22px);
    font-weight: 500;
    letter-spacing: 0.07em;
}

.about-page__line-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #56c334;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
}

@media (max-width: 1599.98px) {
    .about-page__intro-row,
    .about-page__public-row {
        --bs-gutter-x: 70px;
    }

    .about-page__security-grid {
        --bs-gutter-x: 42px;
        --bs-gutter-y: 42px;
    }

    .about-page__cert-panel {
        padding-left: 58px;
        padding-right: 58px;
    }
}

@media (max-width: 1199.98px) {
    .about-page__intro-copy {
        max-width: none;
    }

    .about-page__milestone-visual {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + clamp(14px, 3vw, 30px));
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: block;
        min-height: clamp(112px, 25vw, 220px);
        pointer-events: none;
    }

    .about-page__fly {
        left: auto;
        right: clamp(12px, 7vw, 72px);
        top: 0;
        width: clamp(220px, 48vw, 360px);
    }

    .about-page__milestone-word {
        display: none;
    }

    .about-page__milestone-inner .col-lg-7 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .about-page__milestone-copy {
        max-width: none;
    }

    .about-page__timeline {
        --timeline-card-cover: 20px;
        --timeline-line-left: 29px;
        --timeline-dot-left: 34px;
        margin-left: clamp(10px, 1.2vw, 14px);
    }

    .about-page__cert-panel {
        --cert-panel-edge: 40px;
        margin: 40px 0 0;
    }

    .about-page__security {
        --security-shape-w: clamp(300px, 38vw, 390px);
        --security-shape-right: clamp(-88px, -7vw, -56px);
    }

    .about-page__security-photo {
        width: 100%;
        margin: -42px 0 84px;
    }

    .about-page__security::before {
        top: 0;
        background: linear-gradient(90deg, #f2eaf8 0%, #f6f5fe 100%);
    }

    .about-page__security > .container {
        width: calc(100% - 64px);
    }

    .about-page__security-layout {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        --security-card-w: auto;
    }

    .about-page__security-layout > .order-lg-1 {
        display: block;
        order: 2 !important;
        width: 100%;
        max-width: 100%;
    }

    .about-page__security-layout > .order-lg-2 {
        order: 1 !important;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .about-page__security-grid {
        display: flex;
    }

    .about-page__security-grid > [class*="col-"] {
        width: 50%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: var(--bs-gutter-y);
    }

    .about-page__security-grid > [class*="col-"]:nth-child(1),
    .about-page__security-grid > [class*="col-"]:nth-child(2) {
        align-self: auto;
    }

    .about-page__security-card {
        min-height: clamp(264px, 28vw, 300px);
        padding: 58px 34px 30px;
    }

    .about-page__security-card img {
        top: 44px;
        right: 34px;
    }

    .about-page__security-card h3 {
        max-width: calc(100% - 112px);
    }

    .about-page__security-card p {
        margin-top: 64px;
    }

    .about-page__security-shape {
        bottom: -72px;
    }

    .about-page__security-photo img {
        width: 100%;
        min-height: 0;
        border-radius: 0 0 0 24px;
    }

    .about-page__public {
        padding-bottom: 230px;
    }
}

@media (max-width: 991.98px) {
    .about-page__intro-inner {
        padding-top: 72px;
    }

    .about-page__intro-row {
        --bs-gutter-y: 42px;
    }

    .about-page__intro-copy h2 br,
    .about-page__security-heading h2 br,
    .about-page__milestone-copy > h2 br {
        display: none;
    }

    .about-page__cert-inner {
        padding-top: 44px;
    }

    .about-page__cert-panel {
        min-height: 0;
    }

    .about-page__security-grid {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .about-page__public-row {
        --bs-gutter-y: 38px;
    }

    .about-page__public-copy {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        --page-hero-circle-width: clamp(58px, 18vw, 86px);
    }

    .page-hero__circle {
        bottom: calc(var(--page-hero-circle-width) * -0.58);
    }

    .page-hero__title {
        left: 16px;
        top: 22%;
    }

    .page-hero__title p {
        font-size: 30px;
        letter-spacing: 0.04em;
    }

    .page-hero__title h1 {
        margin-top: 10px;
        font-size: 16px;
    }

    .page-hero__slogan {
        left: 16px;
        right: 0;
        top: 62.2%;
        bottom: auto;
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .page-hero__slogan strong {
        font-size: 15px;
    }

    .page-hero__slogan span {
        margin-top: 8px;
        font-size: 10px;
    }

    .about-page__intro {
        min-height: 0;
        padding: 28px 0 64px;
    }

    .about-page__intro-inner {
        padding-top: 0;
    }

    .about-page__intro-photo img {
        border-radius: 0 0 0 14px;
    }

    .about-page__intro-copy h2 {
        font-size: 18px;
        line-height: 1.75;
    }

    .about-page__intro-copy p {
        margin-top: 26px;
        font-size: 15px;
        line-height: 2;
        letter-spacing: 0.04em;
    }

    .about-page__advantages {
        padding: 48px 0 58px;
    }

    .about-page__section-title {
        font-size: 25px;
    }

    .about-page__adv-row {
        --bs-gutter-x: 28px;
        --bs-gutter-y: 40px;
        margin-top: 40px;
    }

    .about-page__adv-item img {
        width: 88px;
        height: 88px;
    }

    .about-page__adv-item h3 {
        margin-top: 18px;
        font-size: 20px;
    }

    .about-page__adv-item p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.9;
    }

    .about-page__milestone {
        min-height: 0;
        padding: 48px 0 300px;
    }

    .about-page__milestone-inner {
        padding-top: 0;
    }

    .about-page__milestone-copy > h2 {
        font-size: 20px;
        line-height: 2;
    }

    .about-page__timeline {
        --timeline-line-left: 26px;
        --timeline-card-offset: 40px;
        --timeline-card-cover: 8px;
        --timeline-dot-size: 18px;
        --timeline-dot-left: 23px;
        margin-top: 28px;
        margin-left: 8px;
    }

    .about-page__timeline::before {
        width: 2px;
    }

    .about-page__timeline-card {
        min-height: 0;
        margin-bottom: 18px;
        padding: 30px 24px 28px
            calc(
                40px + var(--timeline-card-offset) + var(--timeline-card-cover)
            );
        border-width: 2px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(14, 5, 10, 0.12);
    }

    .about-page__timeline-dot {
        top: 38px;
        border-width: 5px;
    }

    .about-page__timeline-year {
        font-size: 18px;
    }

    .about-page__timeline-card h3 {
        margin-top: 14px;
        font-size: 20px;
        line-height: 1.55;
    }

    .about-page__timeline-card p:not(.about-page__timeline-year) {
        margin-top: 15px;
        font-size: 14px;
        line-height: 2;
    }

    .about-page__cert {
        min-height: 0;
        margin-top: -78px;
        padding: 1px 0 52px;
        overflow: hidden;
    }

    .about-page__cert-bg {
        top: 36px;
    }

    .about-page__cert-inner {
        padding-top: 0;
        padding-bottom: 34px;
    }

    .about-page__cert-carousel {
        width: calc(100% - 54px);
    }

    .about-page__cert-carousel .carousel-item img {
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(12, 3, 6, 0.2);
    }

    .about-page__cert-carousel .carousel-control-prev {
        left: -36px;
    }

    .about-page__cert-carousel .carousel-control-next {
        right: -36px;
    }

    .about-page__cert-carousel .carousel-control-prev,
    .about-page__cert-carousel .carousel-control-next {
        width: 18px;
        height: 32px;
    }

    .about-page__cert-carousel .carousel-control-prev img,
    .about-page__cert-carousel .carousel-control-next img {
        width: 18px;
        height: 32px;
    }

    .about-page__cert-panel {
        --cert-panel-edge: 24px;
        width: calc(100% + var(--cert-panel-edge));
        margin-top: 34px;
        padding: 38px 30px 34px;
        border-radius: 14px 0 0 0;
    }

    .about-page__cert-panel h2 {
        font-size: 20px;
        line-height: 1.9;
    }

    .about-page__cert-panel p {
        margin-top: 24px;
        font-size: 16px;
        line-height: 2;
    }

    .about-page__security {
        --security-shape-w: clamp(218px, 56vw, 270px);
        --security-shape-right: clamp(-78px, -16vw, -52px);
        padding: 0 0 90px;
    }

    .about-page__security::before {
        top: 0;
    }

    .about-page__security > .container {
        width: calc(100% - 32px);
    }

    .about-page__security-heading {
        margin-top: 28px;
        padding: 0 8px;
    }

    .about-page__security-heading h2 {
        font-size: 16px;
        line-height: 1.9;
    }

    .about-page__security-photo {
        margin: -24px -16px 24px 0;
        width: calc(100% + 16px);
    }

    .about-page__security-photo img {
        min-height: 0;
        width: 100%;
        border-radius: 0;
    }

    .about-page__security-grid {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .about-page__security-card {
        min-height: 236px;
        padding: 50px 16px 26px;
        border-radius: 13px;
    }

    .about-page__security-card img {
        top: 38px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .about-page__security-card h3 {
        max-width: calc(100% - 58px);
        font-size: 17px;
    }

    .about-page__security-card p {
        margin-top: 52px;
        font-size: 13px;
        line-height: 2;
    }

    .about-page__security-shape {
        bottom: -58px;
    }

    .about-page__public {
        padding: 52px 0 170px;
    }

    .about-page__public-title h2 {
        font-size: 22px;
    }

    .about-page__public-title p {
        margin-top: 12px;
        font-size: 16px;
    }

    .about-page__public-row {
        margin-top: 28px;
    }

    .about-page__public-photo {
        padding: 0;
    }

    .about-page__public-photo img {
        border-radius: 0 12px 12px 12px;
    }

    .about-page__public-copy p,
    .about-page__public-copy li {
        font-size: 14px;
        line-height: 2;
    }

    .about-page__public-copy p + p {
        margin-top: 28px;
    }

    .about-page__public-copy h3 {
        margin-top: 28px;
        font-size: 16px;
    }

    .about-page__line-btn {
        min-width: 220px;
        min-height: 54px;
        margin-top: 24px;
        padding: 10px 22px;
        font-size: 15px;
        gap: 12px;
    }

    .about-page__line-btn span {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .page-hero {
        --page-hero-circle-width: 88px;
    }

    .page-hero__circle {
        bottom: calc(var(--page-hero-circle-width) * -0.74);
    }

    .page-hero__title {
        left: 8.125%;
        top: 48%;
    }

    .page-hero__slogan {
        left: 8.125%;
        right: auto;
        top: auto;
        bottom: 8.3%;
        width: 28%;
    }

    .page-hero__slogan strong {
        font-size: 13px;
        line-height: 1.35;
    }

    .page-hero__slogan span {
        font-size: 9px;
    }
}

@media (max-width: 575.98px) {
    .page-hero__title {
        top: 22%;
    }

    .page-hero__slogan {
        left: 0;
        top: 87.2%;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .page-hero__slogan {
        top: 87.2%;
    }
}

/* Service page */
.service-page__section {
    overflow: hidden;
    color: #35323a;
    background: #ffffff;
}

.service-page__section :where(h2, h3, p, ul) {
    margin: 0;
}

.service-page__container {
    width: min(1608px, calc(100% - 96px));
    max-width: none;
}

.service-page__tabs {
    position: relative;
    z-index: 1;
    padding: 26px 0 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f2eeff 100%);
}

.service-page__tabs-inner {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.service-page__tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 46px;
    padding: 0 26px;
    border: 1px solid #cac2ec;
    border-radius: 10px;
    background: #ffffff;
    color: #886dc4;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(121, 93, 180, 0.08);
}

.service-page__tabs a span {
    flex: 0 0 auto;
    margin-right: 8px;
    font-size: 13px;
}

.service-page__tabs a:hover,
.service-page__tabs a:focus-visible {
    border-color: #9762c4;
}

.service-page__heading {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.service-page__number {
    flex: 0 0 auto;
    color: #cac2ec;
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: clamp(108px, 7.5vw, 144px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: 0.02em;
}

.service-page__heading-line {
    flex: 0 0 1px;
    align-self: stretch;
    width: 1px;
    margin-top: 12px;
    margin-bottom: 12px;
    background: #cac2ec;
}

.service-page__heading-copy {
    flex: 0 1 auto;
    padding-top: 10px;
}

.service-page__heading-copy h2 {
    color: #35323a;
    font-size: clamp(28px, 1.88vw, 36px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.service-page__lead {
    margin-top: 18px;
    color: #866bc4;
    font-size: clamp(18px, 1.22vw, 23px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

.service-page__desc {
    margin-top: 12px;
    color: #5d5d5d;
    font-size: clamp(15px, 0.95vw, 18px);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.05em;
}

.service-page__purple-btn,
.service-page__white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-page__purple-btn {
    width: 350px;
    max-width: 100%;
    height: 50px;
    background: #9762c4;
    color: #ffffff;
    font-size: 18px;
}

.service-page__purple-btn:hover,
.service-page__purple-btn:focus,
.service-page__purple-btn:focus-visible {
    color: #ffffff;
}

.service-page__purple-btn span,
.service-page__white-btn span {
    position: relative;
    width: 21px;
    height: 21px;
    margin-left: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.service-page__purple-btn span::before,
.service-page__white-btn span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-62%, -50%) rotate(45deg);
}

.service-page__white-btn {
    min-width: 250px;
    height: 58px;
    padding: 0 32px;
    background: #ffffff;
    color: #7753ae;
    font-size: 16px;
}

.service-page__web {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background: #ffffff;
}

.service-page__web > .service-page__container {
    position: relative;
    z-index: 1;
}

.service-page__heading--web {
    margin: 0 auto 86px;
}

.service-page__web-layout {
    position: relative;
    min-height: 1447px;
}

.service-page__computer {
    position: absolute;
    left: calc((100vw - 100%) / -2);
    top: 105px;
    z-index: 1;
    width: clamp(560px, 39.6vw, 760px);
    pointer-events: none;
}

.service-page__computer img {
    width: 100%;
    height: auto;
}

.service-page__plan-grid {
    position: relative;
    z-index: 2;
    width: min(100%, 960px);
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 48px;
}

.service-page__plan-card {
    display: flex;
    flex-direction: column;
    min-height: 660px;
    padding: 38px 44px 36px;
    border: 3px solid #ffffff;
    border-radius: 18px;
    background: linear-gradient(180deg, #f2eeff 0%, #f3f5ff 44%, #ffffff 100%);
}

.service-page__plan-label {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 32px;
    border-radius: 999px;
    background: rgba(151, 98, 196, 0.08);
    color: #886dc4;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.08em;
}

.service-page__plan-card h3 {
    margin-top: 22px;
    padding: 24px 0;
    border-top: 2px solid #beaef4;
    border-bottom: 2px solid #beaef4;
    color: #35323a;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.08em;
}

.service-page__plan-feature {
    position: relative;
    margin-top: 30px;
    padding-left: 18px;
    color: #886dc4;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.82;
    letter-spacing: 0.04em;
}

.service-page__plan-feature::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #cda9f2;
}

.service-page__plan-card ul {
    margin: 22px 0 0;
    padding-left: 22px;
    color: #5d5d5d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.04em;
}

.service-page__plan-card .service-page__purple-btn {
    margin: auto auto 0;
    display: flex;
}

.service-page__plan-card .service-page__purple-btn span {
    width: 22px;
    height: 22px;
    margin-left: 10px;
    border: 0;
    border-radius: 0;
    background: url("../images/02/pro_icon.png") center / contain no-repeat;
}

.service-page__plan-card .service-page__purple-btn span::before {
    content: none;
}

@media (min-width: 1200px) {
    .service-page__plan-card:nth-child(3) .service-page__purple-btn {
        margin: 28px auto 0;
    }
}

.service-page__card-ai {
    /* padding: 0 0 78px; */
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff 61%,
        #f5f6fd 61%,
        #f5f6fd 100%
    );
}

.service-page__heading--card {
    justify-content: flex-start;
    max-width: 1040px;
    margin-bottom: 38px;
}

.service-page__card-panel {
    position: relative;
    padding: 48px 0 52px 240px;
    background: #9762c4;
}

.service-page__card-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: #ffffff;
}

.service-page__card-copy p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.06em;
}

.service-page__card-intro {
    display: block;
    margin-bottom: 38px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.service-page__card-copy .service-page__white-btn {
    margin-top: 32px;
}

.service-page__card-copy .service-page__white-btn span {
    width: 9px;
    height: 14px;
    margin-left: 14px;
    border: 0;
    border-radius: 0;
}

.service-page__card-copy .service-page__white-btn span::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-72%, -50%) rotate(45deg);
}

.service-page__card-photo {
    position: absolute;
    right: 0;
    top: -212px;
    z-index: 1;
    width: min(50%, 719px);
    border-radius: 0 0 0 24px;
}

.service-page__marketing {
    /* --mk-split: fraction (0–1) of card height ABOVE the dividing line.
     0.5 = card centred on the line (50/50). 0.75 = 上 75 / 下 25 of card. */
    --mk-split: 0.5;
    --mk-pad-top: 78px;
    --mk-heading-h: 160px;
    --mk-heading-mb: 56px;
    --mk-card-h: 320px;
    position: relative;
    overflow: hidden;
    padding: var(--mk-pad-top) 0 78px;
    background: #f5f6fd;
}

.service-page__marketing-bg,
.service-page__hosting-bg {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    pointer-events: none;
}

.service-page__marketing-bg img,
.service-page__hosting-bg img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .service-page__marketing-bg {
        inset: calc(
                var(--mk-pad-top) + var(--mk-heading-h) + var(--mk-heading-mb) +
                    var(--mk-card-h) * var(--mk-split)
            )
            0 0 0;
    }

    .service-page__marketing-bg img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

.service-page__marketing .service-page__container,
.service-page__hosting .service-page__container {
    position: relative;
    z-index: 2;
}

.service-page__heading--marketing {
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    min-height: var(--mk-heading-h);
    margin: 0 0 var(--mk-heading-mb) auto;
    padding-right: clamp(24px, 6vw, 110px);
}

.service-page__marketing-cards {
    position: relative;
    z-index: 3;
    width: min(100%, 1320px);
    margin: 0 auto 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-style: solid;
    border-color: #c7bbf3;
    border-width: 12px 2px 2px;
    border-radius: 0 0 0 28px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(120, 90, 180, 0.12);
}

.service-page__marketing-cards article {
    min-height: var(--mk-card-h);
    padding: 54px 56px 50px;
}

.service-page__marketing-cards article + article {
    border-left: 1px solid #c7bbf3;
}

.service-page__marketing-title {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}

.service-page__marketing-title img {
    width: 76px;
    height: 76px;
    margin-right: 0;
    flex: 0 0 76px;
}

.service-page__marketing-title h3 {
    color: #7753ae;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.service-page__marketing-cards p {
    margin-top: 32px;
    color: #5d5d5d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
}

.service-page__marketing-copy {
    width: min(100%, 840px);
    margin-top: 76px;
    color: #ffffff;
}

.service-page__marketing-copy h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.06em;
}

.service-page__marketing-copy p {
    margin-top: 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.05em;
}

.service-page__marketing-copy .service-page__white-btn {
    margin-top: 36px;
}

.service-page__marketing-copy .service-page__white-btn span {
    width: 9px;
    height: 14px;
    margin-left: 14px;
    border: 0;
    border-radius: 0;
}

.service-page__marketing-copy .service-page__white-btn span::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-72%, -50%) rotate(45deg);
}

.service-page__hosting {
    position: relative;
    padding: 70px 0 58px;
    background: #ffffff;
}

.service-page__hosting-bg {
    bottom: 0;
}

.service-page__heading--host {
    max-width: 1190px;
    margin-bottom: 50px;
}

.service-page__hosting-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 580px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.service-page__host-photo {
    width: min(39.6vw, 640px);
    max-width: none;
    margin-left: calc((100vw - min(1608px, calc(100vw - 96px))) / -2);
    margin-top: 18px;
}

.service-page__host-list {
    display: grid;
    gap: 34px;
}

.service-page__host-list article {
    position: relative;
    min-height: 190px;
    padding: 44px 58px 40px 112px;
    border: 2px solid #c7bbf3;
    border-radius: 0 24px 24px 24px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.service-page__host-list article::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9f98ff 0%, #f796ad 100%);
}

.service-page__host-list h3 {
    color: #35323a;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.service-page__host-list p {
    color: #5d5d5d;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.04em;
}

@media (max-width: 1599.98px) {
    .service-page__computer {
        width: clamp(470px, 35vw, 560px);
    }

    .service-page__plan-grid {
        width: min(100%, 800px);
        gap: 48px 34px;
    }

    .service-page__plan-card {
        min-height: 560px;
        padding: 28px 32px 28px;
    }

    .service-page__plan-label {
        font-size: 18px;
    }

    .service-page__plan-card h3 {
        margin-top: 18px;
        padding: 20px 0;
        font-size: 22px;
    }

    .service-page__plan-feature {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.75;
    }

    .service-page__plan-card ul {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.76;
    }

    .service-page__plan-card .service-page__purple-btn {
        width: 300px;
        height: 44px;
        font-size: 15px;
    }

    .service-page__card-panel {
        padding-left: 150px;
    }

    .service-page__card-copy {
        max-width: 500px;
    }

    .service-page__marketing-cards article {
        padding-left: 56px;
        padding-right: 56px;
    }
}

@media (max-width: 1279.98px) {
    .service-page__computer {
        width: clamp(420px, 35vw, 470px);
    }

    .service-page__plan-grid {
        width: min(100%, 720px);
        gap: 42px 30px;
    }

    .service-page__plan-card {
        min-height: 540px;
        padding: 28px 28px 26px;
    }

    .service-page__plan-card .service-page__purple-btn {
        width: 260px;
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    .service-page__container {
        width: calc(100% - 64px);
    }

    .service-page__tabs {
        padding-top: 78px;
    }

    .service-page__tabs-inner {
        gap: 12px;
        flex-wrap: wrap;
    }

    .service-page__tabs a {
        justify-content: center;
        min-width: calc(50% - 6px);
        height: 40px;
        padding-left: 16px;
        padding-right: 24px;
        font-size: 13px;
    }

    .service-page__tabs a span {
        font-size: 11px;
    }

    .service-page__heading {
        gap: 30px;
    }

    .service-page__number {
        min-width: 118px;
        font-size: 98px;
    }

    .service-page__web-layout {
        min-height: 0;
    }

    .service-page__heading--web {
        margin-bottom: 52px;
    }

    .service-page__computer {
        position: relative;
        left: auto;
        top: auto;
        display: block;
        width: min(560px, 70vw);
        margin-left: calc((100vw - 100%) / -2);
        margin-right: auto;
        margin-bottom: calc(-1 * clamp(220px, 29vw, 330px));
    }

    .service-page__plan-grid {
        width: 100%;
        gap: 34px 28px;
    }

    .service-page__plan-card {
        min-height: 520px;
        padding: 30px 32px 30px;
    }

    .service-page__plan-card .service-page__purple-btn {
        margin: auto auto 0;
        padding-top: 0;
    }

    .service-page__plan-card ul {
        margin-bottom: 28px;
    }

    .service-page__purple-btn {
        width: 260px;
        height: 40px;
        font-size: 13px;
    }

    .service-page__card-panel {
        --service-card-panel-gutter: clamp(20px, 5vw, 48px);
        --service-card-photo-lift: clamp(130px, 18vw, 178px);
        display: flex;
        flex-direction: column;
        margin-top: calc(var(--service-card-photo-lift) + 22px);
        padding: 0 var(--service-card-panel-gutter) 50px;
    }

    .service-page__card-photo {
        position: relative;
        order: -1;
        top: auto;
        right: auto;
        display: block;
        width: min(
            720px,
            calc(100% + (var(--service-card-panel-gutter) * 2) - 40px)
        );
        margin-left: auto;
        margin-right: auto;
        margin-top: calc(-1 * var(--service-card-photo-lift));
        margin-bottom: 46px;
        border-radius: 0 0 0 18px;
    }

    .service-page__card-copy {
        order: 1;
        max-width: none;
    }

    .service-page__marketing {
        --mk-split: 0.6;
        --mk-card-h: 260px;
        padding-bottom: 62px;
    }

    .service-page__marketing-cards article {
        padding: 38px 30px;
    }

    .service-page__marketing-title h3 {
        font-size: 21px;
    }

    .service-page__hosting-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-page__host-photo {
        width: min(620px, 72vw);
        margin-left: calc((100vw - 100%) / -2);
        margin-right: auto;
        margin-top: 0;
    }

    .service-page__host-list article {
        grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
        padding: 40px 44px 38px 100px;
    }
}

@media (max-width: 991.98px) {
    .service-page__marketing-cards {
        display: block;
        border-radius: 0 0 0 18px;
    }

    .service-page__marketing-cards article {
        min-height: 0;
        padding: 34px 46px 36px;
    }

    .service-page__marketing-cards article + article {
        border-left: 0;
        border-top: 1px solid #c7bbf3;
    }

    .service-page__marketing-cards p {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .service-page__container {
        width: calc(100% - 40px);
    }

    .service-page__tabs {
        padding: 50px 0 22px;
    }

    .service-page__tabs-inner {
        gap: 10px 12px;
    }

    .service-page__tabs a {
        min-width: calc(50% - 6px);
        height: 38px;
        padding-left: 12px;
        padding-right: 18px;
        border-width: 1px;
        border-radius: 8px;
        font-size: 12px;
        letter-spacing: 0.04em;
    }

    .service-page__tabs a span {
        margin-right: 4px;
        font-size: 11px;
    }

    .service-page__heading {
        align-items: flex-start;
        gap: 14px;
    }

    .service-page__number {
        min-width: 82px;
        font-size: 64px;
        line-height: 1;
    }

    .service-page__heading-line {
        flex: 0 0 1px;
        align-self: flex-start;
        width: 1px;
        height: 60px;
        margin-top: 4px;
        margin-bottom: 0;
        background: #cac2ec;
    }

    .service-page__heading-copy h2 {
        font-size: 20px;
        line-height: 1.6;
    }

    .service-page__lead {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.9;
    }

    .service-page__desc {
        margin-top: 10px;
        font-size: 14px;
        line-height: 2;
    }

    .service-page__web {
        padding: 48px 0 66px;
    }

    .service-page__heading--web {
        margin-bottom: 32px;
    }

    .service-page__computer {
        width: 70vw;
        max-width: 520px;
        margin-left: -20px;
        margin-bottom: calc(-1 * clamp(145px, 32vw, 205px));
    }

    .service-page__plan-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-page__plan-card {
        min-height: 0;
        padding: 30px 30px 28px;
        border-width: 2px;
        border-radius: 14px;
    }

    .service-page__plan-label {
        font-size: 19px;
    }

    .service-page__plan-card h3 {
        margin-top: 18px;
        padding: 20px 0;
        font-size: 22px;
    }

    .service-page__plan-feature,
    .service-page__plan-card ul {
        font-size: 14px;
        line-height: 2;
    }

    .service-page__purple-btn {
        width: 100%;
        height: 42px;
        font-size: 14px;
    }

    .service-page__plan-card .service-page__purple-btn {
        margin: clamp(30px, 5vw, 38px) auto 0;
    }

    .service-page__plan-card:nth-child(3) .service-page__purple-btn {
        margin-top: 46px;
    }

    .service-page__heading--card {
        margin-bottom: 42px;
    }

    .service-page__card-panel {
        --service-card-photo-lift: clamp(104px, 29vw, 138px);
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-top: calc(var(--service-card-photo-lift) + 22px);
        padding: 0 0 42px;
    }

    .service-page__card-photo {
        width: calc(100% - 40px);
        max-width: none;
        margin: calc(-1 * var(--service-card-photo-lift)) auto 34px;
        border-radius: 0 0 0 10px;
    }

    .service-page__card-copy {
        width: 100%;
        padding: 0 20px;
    }

    .service-page__card-copy p {
        font-size: 14px;
        line-height: 2.05;
    }

    .service-page__card-intro {
        display: block;
        margin-bottom: 34px;
        padding: 0;
        font-size: 14px;
        line-height: 1.8;
    }

    .service-page__white-btn {
        min-width: 0;
        width: 180px;
        height: 46px;
        padding: 0 18px;
        font-size: 12px;
    }

    .service-page__card-copy .service-page__white-btn {
        width: min(280px, 100%);
        height: 58px;
        font-size: 15px;
    }

    .service-page__marketing {
        padding: 50px 0 62px;
    }

    .service-page__heading--marketing {
        justify-content: flex-start;
        margin-bottom: 34px;
    }

    .service-page__marketing-cards {
        display: block;
        border-radius: 0 0 0 14px;
    }

    .service-page__marketing-cards article {
        min-height: 245px;
        padding: 36px 44px 40px;
    }

    .service-page__marketing-cards article + article {
        border-left: 0;
        border-top: 1px solid #c7bbf3;
    }

    .service-page__marketing-title img {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        margin-right: 22px;
    }

    .service-page__marketing-title h3 {
        font-size: 20px;
    }

    .service-page__marketing-cards p {
        margin-top: 42px;
        font-size: 14px;
        line-height: 2;
    }

    .service-page__marketing-copy {
        margin-top: 46px;
    }

    .service-page__marketing-copy h3 {
        font-size: 18px;
        line-height: 1.9;
    }

    .service-page__marketing-copy p {
        margin-top: 28px;
        font-size: 13px;
    }

    .service-page__hosting {
        padding: 54px 0 62px;
    }

    .service-page__heading--host {
        margin-bottom: 28px;
    }

    .service-page__host-photo {
        width: 70vw;
        max-width: 520px;
        margin-left: -20px;
    }

    .service-page__host-list {
        gap: 22px;
    }

    .service-page__host-list article {
        display: block;
        min-height: 0;
        padding: 34px 28px 30px;
        border-radius: 0 10px 10px 10px;
    }

    .service-page__host-list article::before {
        top: 38px;
        left: 30px;
        width: 22px;
        height: 22px;
        transform: none;
    }

    .service-page__host-list h3 {
        padding-left: 40px;
        font-size: 20px;
    }

    .service-page__host-list p {
        margin-top: 22px;
        font-size: 14px;
        line-height: 2;
    }
}

/* ==========================================================================
   Best Case Page - Search + Categories (案例頁搜尋與分類)
   ========================================================================== */
.best-case__search-wrap {
    position: relative;
    padding: 40px 0 0;
    margin-bottom: 30px;
}

.best-case__search-container {
    position: relative;
}

/* 紫色漸層搜尋區（容器內、對角圓角、非滿版） */
.best-case__search {
    position: relative;
    background: linear-gradient(90deg, #8260b9 0%, #aa72be 100%);
    border-radius: 18px 0 18px 0;
    padding: 36px 48px;
    color: var(--c-white);
    box-shadow: 0 14px 30px rgba(60, 30, 110, 0.14);
}

.best-case__search-inner {
    position: relative;
    z-index: 2;
}

.best-case__search-row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
}

/* 左右欄：左欄文字靠右、欄間細分隔線 */
.best-case__search-left {
    padding-right: 40px;
    text-align: right;
}

.best-case__search-right {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
}

.best-case__search-title {
    color: var(--c-white);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 1.5px;
    margin: 0 0 14px;
}

.best-case__search-text {
    color: var(--c-white);
    font-size: 14px;
    line-height: 1.95;
    letter-spacing: 1px;
    margin: 0;
}

.best-case__search-text + .best-case__search-text {
    margin-top: 2px;
}

.best-case__search-subtitle {
    color: var(--c-white);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 1.5px;
    margin: 0 0 14px;
}

.best-case__search-form {
    position: relative;
    width: 100%;
}

.best-case__search-input {
    width: 100%;
    height: 44px;
    padding: 0 52px 0 22px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #5d5d5d;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(46, 16, 84, 0.14);
    transition: box-shadow 0.25s ease;
}

.best-case__search-input:focus {
    outline: none;
    box-shadow: 0 5px 14px rgba(46, 16, 84, 0.22);
}

.best-case__search-input::placeholder {
    color: #cecedb;
    opacity: 1;
}

.best-case__search-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #9762c4;
    font-size: 17px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.best-case__search-btn:hover,
.best-case__search-btn:focus-visible {
    color: #6d3aa6;
    outline: none;
    transform: translateY(-50%) scale(1.08);
}

/* 分類列（白底，位於紫色區塊下方） */
.best-case__filter-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
    padding: 0 4px;
}

.best-case__categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
}

.best-case__cat-btn {
    appearance: none;
    background: #ffffff;
    color: #866bc4;
    border: 1px solid #866bc4;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    padding: 9px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.best-case__cat-btn:hover {
    background: #f3eefb;
    transform: translateY(-1px);
}

.best-case__cat-btn:focus-visible {
    outline: 2px solid #866bc4;
    outline-offset: 2px;
}

.best-case__cat-btn.is-active {
    background: #866bc4;
    color: #ffffff;
    border-color: #866bc4;
    box-shadow: 0 6px 14px rgba(60, 30, 110, 0.22);
}

.best-case__count {
    color: #9290dc;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
    text-align: right;
}

/* ==========================================================================
   Best Case Page - Case List (案例列表 + 載入更多)
   ========================================================================== */
.best-case__list-wrap {
    padding: 36px 0 60px;
}

/* 案例列表用的縮小 work-card（覆寫 swiper 大尺寸版本） */
.best-case__list .work-card {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(50, 27, 85, 0.1);
}

.best-case__list .work-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* hover 漸層樣式已併入基礎 .work-card::before，案例列表沿用 */

/* 連結圖示縮小（配合 grid 小卡比例） */
.best-case__list .work-card__link {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    box-shadow: 0 4px 12px rgba(67, 42, 116, 0.25);
}

/* 文字保留原本「底部置中」，僅縮小字級配合列表卡尺寸 */
.best-case__list .work-card__caption {
    min-height: 68px;
    padding: 14px 22px 16px;
}

.best-case__list .work-card__caption strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.best-case__list .work-card__caption small {
    margin-top: 5px;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.06em;
}

.best-case__more {
    margin-top: 44px;
    text-align: center;
}

.best-case__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #9862c4;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
    padding: 13px 32px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(60, 30, 110, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.best-case__more-btn:hover,
.best-case__more-btn:focus-visible {
    background: #7d49a8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(60, 30, 110, 0.28);
    outline: none;
}

.best-case__more-btn i {
    font-size: 16px;
    line-height: 1;
}

/* ----- RWD ----- */
@media (max-width: 767.98px) {
    .best-case__list-wrap {
        padding: 28px 0 48px;
    }
    .best-case__list .work-card {
        border-radius: 12px;
    }
    .best-case__list .work-card__link {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }
    .best-case__list .work-card__caption {
        min-height: 60px;
        padding: 12px 16px 14px;
    }
    .best-case__list .work-card__caption strong {
        font-size: 14px;
        letter-spacing: 0.06em;
    }
    .best-case__list .work-card__caption small {
        font-size: 11px;
        margin-top: 4px;
        letter-spacing: 0.04em;
    }
    .best-case__more {
        margin-top: 32px;
    }
    .best-case__more-btn {
        font-size: 14px;
        padding: 12px 28px;
    }
}

/* ----- RWD ----- */
@media (max-width: 1199.98px) {
    .best-case__search {
        padding: 32px 40px;
    }
    .best-case__search-left {
        padding-right: 32px;
    }
    .best-case__search-right {
        padding-left: 32px;
    }
    .best-case__search-title,
    .best-case__search-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .best-case__search {
        padding: 30px 32px;
        border-radius: 12px;
    }
    .best-case__search-left {
        padding-right: 0;
        padding-bottom: 24px;
        text-align: left;
    }
    .best-case__search-right {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
    }
    .best-case__search-title,
    .best-case__search-subtitle {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    .best-case__search-text {
        font-size: 13.5px;
        line-height: 1.9;
    }
}

@media (max-width: 767.98px) {
    .best-case__search-wrap {
        padding: 28px 0 0;
        margin-bottom: 24px;
    }
    .best-case__search {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .best-case__search-left {
        padding-bottom: 20px;
    }
    .best-case__search-right {
        padding-top: 20px;
    }
    .best-case__search-title,
    .best-case__search-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    .best-case__search-text {
        font-size: 13px;
        line-height: 1.85;
        letter-spacing: 0.5px;
    }
    .best-case__search-input {
        height: 44px;
        padding: 0 50px 0 18px;
        font-size: 13px;
    }
    .best-case__search-btn {
        right: 6px;
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
    .best-case__filter-bar {
        margin-top: 20px;
        gap: 10px;
    }
    .best-case__categories {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .best-case__categories::-webkit-scrollbar {
        display: none;
    }
    .best-case__cat-btn {
        flex: 0 0 auto;
        font-size: 13px;
        letter-spacing: 1px;
        padding: 8px 18px;
    }
    .best-case__count {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .best-case__search {
        padding: 24px 18px;
    }
    .best-case__search-title {
        font-size: 17px;
    }
    .best-case__search-subtitle {
        font-size: 15px;
    }
}

/* ==========================================================================
   News Page - Filter + List（最新動態列表頁）
   ========================================================================== */

/* 列表外層（沿用 best-case__search-wrap 提供的 padding 與 page-bg-top 裝飾） */
.news-page__list-wrap {
    padding: 20px 0 70px;
}

/* 2 欄 grid：將 news-card 改為彈性比例，避免固定 336px 撐爆 col-lg-6 */
.news-page__list .news-card {
    grid-template-columns: 44% 1fr;
}

.news-page__list .news-card__pic img {
    width: 100%;
    height: auto;
    aspect-ratio: 336 / 240;
    border-radius: 22px 0 22px 22px;
}

.news-page__list .news-card__content {
    min-height: 0;
    margin-left: -58px;
    padding: 26px 28px 22px 78px;
    border-radius: 24px;
}

/* 列表頁中每張卡片預設為淡紫底（hover 反向：切回白底） */
.news-page__list .news-card .news-card__content {
    background: linear-gradient(90deg, #f3f1ff 0%, #f8f8fe 100%);
    box-shadow: none;
}

/* ----- 全域 news-card hover 行為（首頁＋動態列表共用）----- */

/* 平滑過渡 */
.news-card .news-card__content {
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* hover：底色切回白底並加上陰影（淡紫漸層為預設） */
.news-card:hover .news-card__content {
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(14, 5, 10, 0.1);
}

/* 箭頭圖示：預設線框、hover 後切換為實心 */
.news-card__arrow {
    display: inline-block;
    font-size: inherit;
    line-height: 1;
}

.news-card__arrow--default {
    display: none;
}

.news-card:hover .news-card__arrow--hover {
    display: none;
}

.news-card:hover .news-card__arrow--default {
    display: inline-block;
}

/* 縮小字級以適配窄欄寬 */
.news-page__list .news-card__meta {
    font-size: 14px;
}

.news-page__list .news-card__title {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page__list .news-card__text {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page__list .news-card__footer {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 13px;
}

.news-page__list .news-card__footer a {
    font-size: 16px;
}

.news-page__list .news-card__footer a i {
    font-size: 18px;
}

/* 載入更多區塊（沿用 best-case__more 樣式，僅微調間距） */
.news-page__list-wrap .best-case__more {
    margin-top: 56px;
}

/* ----- RWD ----- */
@media (max-width: 1199.98px) {
    .news-page__list .news-card__content {
        margin-left: -44px;
        padding: 22px 22px 20px 64px;
    }
    .news-page__list .news-card__title {
        font-size: 16px;
    }
    .news-page__list .news-card__text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .news-page__list .news-card {
        grid-template-columns: 280px 1fr;
        max-width: 720px;
        margin: 0 auto;
    }
    .news-page__list .news-card__pic img {
        width: 280px;
        height: 200px;
        aspect-ratio: auto;
    }
    .news-page__list .news-card__content {
        margin-left: -58px;
        padding: 26px 32px 22px 86px;
    }
}

@media (max-width: 767.98px) {
    .news-page__list-wrap {
        padding: 12px 0 50px;
    }
    .news-page__list .news-card {
        grid-template-columns: 1fr;
    }
    .news-page__list .news-card__pic {
        width: 74%;
        margin: 0 auto;
    }
    .news-page__list .news-card__pic img {
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 200;
        border-radius: clamp(18px, 5vw, 28px) 0 clamp(18px, 5vw, 28px)
            clamp(18px, 5vw, 28px);
    }
    .news-page__list .news-card__content {
        margin: clamp(-42px, -10vw, -30px) 0 0;
        padding: clamp(54px, 14vw, 72px) clamp(20px, 5.5vw, 30px)
            clamp(20px, 5.5vw, 26px);
        border-radius: clamp(14px, 4vw, 22px);
    }
    .news-page__list .news-card__title {
        font-size: clamp(15px, 4.4vw, 18px);
    }
    .news-page__list .news-card__text {
        font-size: clamp(13px, 3.6vw, 15px);
    }
    .news-page__list-wrap .best-case__more {
        margin-top: 36px;
    }
}

/* ==========================================================================
   News Detail Page - 最新消息詳細頁
   ========================================================================== */

/* 共用 page-bg-top 的 wrap：分類列底下直接接內容區，不切斷背景 */
.news-detail__wrap {
    padding-bottom: 60px;
}

.news-detail {
    position: relative;
    z-index: 1;
    padding: 32px 0 0;
    background: transparent;
}

.news-detail__header {
    max-width: 1080px;
    margin: 0 auto 28px;
    text-align: center;
}

.news-detail__title {
    color: #35323a;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0 12px;
}

/* 標題下方漸層裝飾線：#c198eb → #d5caff */
.news-detail__title-line {
    display: block;
    width: clamp(90px, 12%, 140px);
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #c198eb 0%, #d5caff 100%);
    border-radius: 2px;
}

.news-detail__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.news-detail__date {
    color: #886dc4;
}

.news-detail__divider {
    color: #c198eb;
}

.news-detail__category {
    color: #866bc4;
    font-weight: 400;
}

.news-detail__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 8px;
}

.news-detail__media {
    position: relative;
    border-radius: 22px 0 22px 22px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(60, 30, 110, 0.12);
}

.news-detail__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-detail__content {
    color: #5d5d5d;
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: 0.04em;
}

.news-detail__content p {
    margin: 0;
    color: #5d5d5d;
}

.news-detail__lead {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.news-detail__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.news-detail__cta-text {
    margin-bottom: 10px;
    color: #5d5d5d;
}

.news-detail__links {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-detail__links li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
    color: #5d5d5d;
}

.news-detail__link-label {
    color: #5d5d5d;
    letter-spacing: 0.02em;
}

.news-detail__link-divider {
    color: #5d5d5d;
}

.news-detail__link {
    color: #886dc4;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.news-detail__link:hover,
.news-detail__link:focus-visible {
    color: #6d3aa6;
    text-decoration: underline;
    outline: none;
}

.news-detail__footnote {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.85;
    color: #888;
    letter-spacing: 0.02em;
}

.news-detail__actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.news-detail__back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 168px;
    padding: 11px 32px 11px 24px;
    background: #9862c4;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.18em;
    line-height: 1;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(60, 30, 110, 0.22);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.news-detail__back-btn:hover,
.news-detail__back-btn:focus-visible {
    background: #7d49a8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(60, 30, 110, 0.3);
    outline: none;
}

.news-detail__back-icon {
    font-size: 22px;
    line-height: 1;
    margin-right: 2px;
    transition: transform 0.2s ease;
}

.news-detail__back-btn:hover .news-detail__back-icon,
.news-detail__back-btn:focus-visible .news-detail__back-icon {
    transform: translateX(-3px);
}

/* 共用 page-bg-top wrap：覆寫 best-case__search-wrap 的 margin-bottom，避免分類列與內容之間有縫 */
.news-detail__wrap.best-case__search-wrap {
    margin-bottom: 0;
}

/* ----- RWD：news-detail ----- */
@media (max-width: 1199.98px) {
    .news-detail__title {
        font-size: 23px;
    }
    .news-detail__title-line {
        margin-top: 12px;
    }
    .news-detail__body {
        gap: 32px;
    }
    .news-detail__content {
        font-size: 14.5px;
        line-height: 1.9;
    }
}

@media (max-width: 991.98px) {
    .news-detail__wrap {
        padding-bottom: 50px;
    }
    .news-detail {
        padding: 24px 0 0;
    }
    .news-detail__title {
        font-size: 21px;
        line-height: 1.6;
    }
    .news-detail__title-line {
        width: clamp(80px, 16%, 130px);
    }
    .news-detail__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-detail__media {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .news-detail__wrap {
        padding-bottom: 44px;
    }
    .news-detail {
        padding: 18px 0 0;
    }
    .news-detail__header {
        margin-bottom: 22px;
    }
    .news-detail__title {
        font-size: 19px;
        line-height: 1.65;
        letter-spacing: 0.02em;
        padding: 0 4px;
    }
    .news-detail__title-line {
        width: clamp(70px, 20%, 110px);
        height: 2px;
        margin-top: 10px;
    }
    .news-detail__meta {
        margin-top: 10px;
        font-size: 13px;
    }
    .news-detail__media {
        border-radius: 18px 0 18px 18px;
    }
    .news-detail__media img {
        aspect-ratio: 4 / 3;
    }
    .news-detail__content {
        font-size: 14px;
        line-height: 1.9;
    }
    .news-detail__footnote {
        font-size: 12.5px;
        line-height: 1.8;
    }
    .news-detail__actions {
        margin-top: 36px;
    }
    .news-detail__back-btn {
        min-width: 152px;
        padding: 10px 24px 10px 18px;
        font-size: 14px;
        letter-spacing: 0.14em;
    }
    .news-detail__back-icon {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .news-detail__title {
        font-size: 17.5px;
    }
    .news-detail__meta {
        font-size: 12.5px;
        flex-wrap: wrap;
        gap: 4px 6px;
    }
    .news-detail__content {
        font-size: 13.5px;
    }
}

/* ============================================================
   Contact Page (05) - 聯絡我們
   ============================================================ */
.contact__page-section {
    position: relative;
}

/* Intro 區塊（左圖 + 右側 LINE 卡片 + CTA） */
.contact-page__intro {
    position: relative;
    padding: clamp(60px, 6.5vw, 110px) 0 clamp(120px, 9vw, 170px);
    background: #ffffff;
    /* 保留下方空間讓地圖可以「穿越」進來且不會超出白底（需 ≥ map 高度的一半） */
}

.contact-page__intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 470px) 1fr;
    gap: clamp(36px, 5vw, 88px);
    align-items: center;
    margin-bottom: 3rem;
}

/* 左側：05pic.png（含紫色穿越底塊） */
.contact-page__intro-photo {
    position: relative;
    width: 100%;
}

.contact-page__intro-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 470px;
    margin: 0 auto;
}

/* 右側 */
.contact-page__intro-body {
    display: flex;
    flex-direction: column;
}

/* 字級階層 (desktop @1920)：
   L 大標 18 → intro-title, cta-title
   M 內文 15 → intro-desc, line-title, line-id
   M+ 按鈕 17 → line-btn
   S 小說明 14 → cta-desc
   XS 服務時間 13 → line-hours */

.contact-page__intro-title {
    margin: 0;
    color: #35323a;
    font-weight: 500;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.55;
    letter-spacing: 0.04em;
}

.contact-page__intro-desc {
    margin: 12px 0 22px;
    color: #866bc4;
    font-weight: 400;
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.8;
    letter-spacing: 0.04em;
}

/* LINE 卡片 */
.contact-page__line-card {
    background: #f4faec;
    border-radius: 22px;
    padding: clamp(26px, 2.4vw, 38px) clamp(28px, 2.6vw, 42px)
        clamp(22px, 2.1vw, 30px);
    /* 浮動陰影 — 強化漂浮感 */
    box-shadow:
        0 18px 40px rgba(82, 142, 36, 0.18),
        0 6px 14px rgba(82, 142, 36, 0.1);
}

.contact-page__line-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2vw, 32px);
    margin-bottom: clamp(20px, 1.8vw, 28px);
}

.contact-page__line-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-page__line-logo img {
    display: block;
    width: clamp(52px, 4vw, 72px);
    height: auto;
}

.contact-page__line-text {
    /* 不撐滿剩餘空間，讓 icon + text 自然寬度置中於卡片內 */
    flex: 0 0 auto;
    min-width: 0;
}

.contact-page__line-title {
    margin: 0 0 6px;
    color: #35323a;
    font-weight: 400;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.contact-page__line-id {
    margin: 0;
    color: #35323a;
    font-weight: 400;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.contact-page__line-id span {
    color: #5dac37;
    font-weight: 400;
    margin-left: 6px;
    letter-spacing: 0.04em;
}

/* 立即線上洽詢 按鈕（圓角矩形，非膠囊型） */
.contact-page__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: clamp(9px, 0.75vw, 13px) 20px;
    border-radius: clamp(10px, 0.85vw, 14px);
    background: linear-gradient(90deg, #319424 0%, #80c047 100%);
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(15px, 1.1vw, 20px);
    letter-spacing: 0.08em;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    box-shadow: 0 8px 18px rgba(49, 148, 36, 0.22);
}

.contact-page__line-btn img {
    width: clamp(17px, 1.2vw, 24px);
    height: auto;
}

.contact-page__line-btn:hover,
.contact-page__line-btn:focus {
    color: #ffffff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 24px rgba(49, 148, 36, 0.3);
}

.contact-page__line-hours {
    margin: clamp(14px, 1.2vw, 20px) 0 0;
    color: #5d5d5d;
    font-weight: 400;
    font-size: clamp(12px, 0.85vw, 15px);
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
}

.contact-page__line-hours strong {
    font-weight: 500;
}

.contact-page__line-hours .divider {
    display: inline-block;
    margin: 0 10px;
    color: #c8c8c8;
    font-weight: 400;
}

/* LET'S START SOMETHING BETTER（位於 intro-body 右欄底部） */
.contact-page__cta {
    display: grid;
    /* 右欄內 標題:內文 約 30:70 */
    grid-template-columns: minmax(160px, 30%) 1fr;
    gap: clamp(22px, 2vw, 40px);
    align-items: center;
    margin-top: clamp(32px, 3vw, 50px);
    padding: clamp(6px, 0.8vw, 14px) 0;
}

.contact-page__cta-title {
    position: relative;
    color: #866bc4;
    font-weight: 500;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-align: right;
    padding-right: clamp(18px, 1.7vw, 30px);
}

.contact-page__cta-title p {
    margin: 0;
    color: #866bc4;
}

.contact-page__cta-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 78%;
    background: #c9bde3;
}

.contact-page__cta-desc {
    color: #5d5d5d;
    font-weight: 400;
    /* 必須小於 cta-title（title @1920 = 20px，此處最大 16px） */
    font-size: clamp(12px, 0.85vw, 16px);
    line-height: 1.85;
    letter-spacing: 0.04em;
}

.contact-page__cta-desc p {
    margin: 0;
    color: #5d5d5d;
}

.contact-page__cta-desc p + p {
    margin-top: 2px;
}

/* 地圖區（含穿越設計，參考 index sec-stats / sec-works 模式） */
.contact-page__map-wrap {
    position: relative;
    background: #f5f4fa;
    /* 1px padding-top：打斷 margin collapse，避免 .contact-page__map 的負 margin
     穿透 .container 一路 collapse 到 wrap，連同 #f5f4fa 背景一起被拉上去 */
    padding-top: 1px;
    padding-bottom: clamp(30px, 3vw, 50px);
    overflow: visible;
}

.contact-page__map-wrap .sec-contact {
    background: transparent;
    padding-top: clamp(46px, 4.5vw, 80px);
}

.contact-page__map {
    position: relative;
    width: 100%;
    /* 不對稱圓角：右上 + 左下 */
    border-radius: 0 22px 0 22px;
    padding: 6px;
    background: linear-gradient(135deg, #cba9d8 0%, #b69ce1 100%);
    box-shadow: 0 16px 36px rgba(118, 92, 168, 0.16);
    /* 穿越設計：50/50 跨越白底 (.contact-page__intro) 與 #f5f4fa (.contact-page__map-wrap)
     margin-top 由 JS (updateContactMapSpacing) 精準設為 -outerHeight/2，clamp 僅為 fallback */
    margin-top: clamp(-160px, -9vw, -110px);
    z-index: 3;
}

.contact-page__map iframe {
    display: block;
    width: 100%;
    height: clamp(220px, 18vw, 320px);
    border: 0;
    /* 跟著外框走同方向的圓角，內縮 6px */
    border-radius: 0 16px 0 16px;
    background: #eef1f5;
}

/* 平板 RWD */
@media (max-width: 991.98px) {
    .contact-page__intro-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        justify-items: center;
        text-align: left;
    }

    .contact-page__intro-photo {
        max-width: 420px;
    }

    .contact-page__intro-body {
        width: 100%;
        max-width: 640px;
    }

    .contact-page__cta {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        margin-top: 28px;
    }

    .contact-page__cta-title {
        text-align: center;
        padding-right: 0;
        padding-bottom: 14px;
    }

    .contact-page__cta-title::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 64px;
        height: 1px;
    }

    .contact-page__cta-desc {
        text-align: center;
    }

    .contact-page__map iframe {
        height: clamp(200px, 36vw, 300px);
    }
}

/* 手機 RWD（≤575）字級階層：
   L 16 → intro-title, cta-title, line-btn
   M 14.5 → line-title, line-id
   M- 13.5 → intro-desc
   S 12.5 → cta-desc
   XS 11.5 → line-hours */
@media (max-width: 575.98px) {
    .contact-page__intro {
        padding: 48px 0 140px;
    }

    .contact-page__intro-grid {
        gap: 28px;
    }

    .contact-page__intro-photo {
        max-width: 320px;
    }

    .contact-page__intro-title {
        font-size: 17px;
        line-height: 1.5;
    }

    .contact-page__intro-desc {
        margin: 10px 0 18px;
        font-size: 14.5px;
        line-height: 1.75;
    }

    .contact-page__line-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .contact-page__line-head {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-page__line-logo img {
        width: 52px;
    }

    .contact-page__line-title,
    .contact-page__line-id {
        font-size: 15.5px;
        text-align: center;
    }

    .contact-page__line-id span {
        display: inline-block;
        margin-left: 4px;
    }

    .contact-page__line-btn {
        font-size: 17px;
        padding: 12px 16px;
        gap: 8px;
        letter-spacing: 0.06em;
        border-radius: 12px;
    }

    .contact-page__line-btn img {
        width: 20px;
    }

    .contact-page__line-hours {
        font-size: 12.5px;
        margin-top: 12px;
    }

    .contact-page__line-hours .divider {
        margin: 0 6px;
    }

    .contact-page__cta {
        margin-top: 28px;
    }

    .contact-page__cta-title {
        font-size: 17px;
        letter-spacing: 0.08em;
    }

    .contact-page__cta-desc {
        font-size: 13.5px;
        line-height: 1.8;
        text-align: center;
    }

    .contact-page__map {
        border-radius: 0 16px 0 16px;
        padding: 4px;
        /* 50/50 穿越由 JS (updateContactMapSpacing) 動態設定，此值為 fallback；
       iframe 240 + padding 8 = 248，一半 ≈ -124 */
        margin-top: -124px;
    }

    .contact-page__map iframe {
        height: 240px;
        border-radius: 0 12px 0 12px;
    }
}
