/**
 * 首頁 Figma（node 1:2）版型 — 淨大淨水網站
 *
 * 字級與字族對應設計稿（Noto Sans TC / Inter / Poppins）
 */

/* -------------------------------------------------------------------------
   隱藏預設頁首頁尾（此頁使用 Figma 專用區塊）
   ------------------------------------------------------------------------- */
/* 保留 DOM 與可程式化 click，避免 display:none 導致選單無法開啟 */
body.layercloud-figma-front .site-header>.container {
    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;
    border: 0 !important;
    white-space: nowrap !important;
}

body.layercloud-figma-front .site-header {
    position: static;
    height: 0;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

body.layercloud-figma-front .site-footer {
    display: none !important;
}

body.layercloud-figma-front .main-content {
    padding-top: 0 !important;
}

body.layercloud-figma-front .mobile-nav {
    top: 83px;
    z-index: 600;
}

@media (max-width: 1023px) {
    body.layercloud-figma-front .mobile-nav {
        top: 56px;
    }
}

/* -------------------------------------------------------------------------
   設計代碼（Figma variables）
   ------------------------------------------------------------------------- */
.figma-home {
    --figma-blue: #0059ca;
    --figma-blue-dark: #004499;
    --figma-text: #333333;
    --figma-muted: #aaaaaa;
    --figma-border: #cccccc;
    --figma-bg-soft: #f6f4f3;
    --figma-shadow-text: 0 4px 10px #003a83;
    --figma-max: 1200px;
    --font-zh: "Noto Sans TC", "Inter", sans-serif;
    --font-en: "Inter", "Noto Sans TC", sans-serif;
    --font-ui: "Arial", "Noto Sans TC", sans-serif;
    --font-heading-cn: "Noto Sans TC", sans-serif;
    background: #ffffff;
    color: var(--figma-text);
    font-family: var(--font-zh);
    position: relative;
    overflow-x: hidden;
}

/* -------------------------------------------------------------------------
   頂部列（83px 白底陰影）
   ------------------------------------------------------------------------- */
.figma-home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 83px;
    background: #ffffff;
    box-shadow: 0 4px 13.7px rgba(0, 0, 0, 0.25);
}

/* 頂欄內層：Figma 40:562（行動）／桌面皆為 LOGO 置中、選單右側 */
.figma-home-header__inner {
    max-width: var(--figma-max);
    margin: 0 auto;
    padding: 0 26px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.figma-home-header__brand {
    display: flex;
    align-items: center;
    gap: 15.478px;
    text-decoration: none;
    color: inherit;
    grid-column: 2;
    justify-self: center;
}

.figma-home-header__brand img {
    display: block;
    height: auto;
}

.figma-home-header__icon {
    width: 28px;
    height: 36px;
}

.figma-home-header__logotype {
    width: 120px;
    height: auto;
}

.figma-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    grid-column: 3;
    justify-self: end;
}

.figma-menu-toggle img {
    width: 30px;
    height: 23px;
}

@media (min-width: 1024px) {
    .figma-menu-toggle {
        margin-right: -14px;
    }
}

/* 主內容區頂部留白（固定列） */
.figma-home__main {
    padding-top: 83px;
}

@media (max-width: 1023px) {
    .figma-home-header {
        height: 56px;
        box-shadow: 0 1.25px 4.281px rgba(0, 0, 0, 0.25);
    }

    /* Figma 40:562 行動頂欄：右側餘白約 2.17%（375 寬約 8px） */
    .figma-home-header__inner {
        padding: 0 8px;
    }

    /* LOGO 為桌面尺寸的 60%（28×36 → 16.8×21.6，120 → 72） */
    .figma-home-header__icon {
        width: 16.8px;
        height: 21.6px;
    }

    .figma-home-header__logotype {
        width: 72px;
    }

    .figma-menu-toggle img {
        width: 26px;
        height: auto;
    }

    .figma-home__main {
        padding-top: 56px;
    }
}

/* -------------------------------------------------------------------------
   Hero 輪播 — 設計稿 1200×579；預設以 aspect-ratio 等比例縮放高度。
   電腦版（≥901px）固定高度 722px，圖片以 object-fit: cover 等比例填滿。
   ------------------------------------------------------------------------- */
.figma-hero {
    position: relative;
    /* 高於 .figma-intro，避免引言區絕對定位裝飾圖（.figma-deco-intro）疊在主視覺輪播上 */
    z-index: 2;
    width: 100%;
    aspect-ratio: 1200 / 579;
    min-height: 0;
    background: #000;
    overflow: hidden;
    /* 左右滑動換頁：保留垂直捲動給整頁 */
    touch-action: pan-y;
    cursor: grab;
}

.figma-hero.is-hero-dragging {
    cursor: grabbing;
}

.figma-hero img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

@media (min-width: 901px) {
    .figma-hero {
        height: 722px;
        aspect-ratio: auto;
    }
}

.figma-hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.figma-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.figma-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.figma-hero-slide__media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.figma-hero-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.figma-hero-slide__media picture {
    position: absolute;
    inset: 0;
    display: block;
}

.figma-hero-slide__media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.figma-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.figma-hero-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    max-width: 600px;
    text-align: center;
}

.figma-hero-slide__content--stack {
    white-space: normal;
}

.figma-hero-slide__j {
    width: 70px;
    height: auto;
    aspect-ratio: 70 / 90;
    object-fit: contain;
}

.figma-hero-slide__brand {
    width: min(254px, 90vw);
    max-width: 100%;
    height: auto;
    aspect-ratio: 254 / 75;
    object-fit: contain;
}

.figma-hero-slide__badge {
    width: 168px;
    max-width: 70vw;
    height: auto;
}

/* 40px Inter Medium, line-height 60px — 設計稿；強制副標單行（覆蓋 --stack 的 white-space: normal） */
.figma-hero-slide__sub {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: clamp(22px, 4vw, 40px);
    line-height: 1.5;
    color: #ffffff;
    text-shadow: var(--figma-shadow-text);
    margin: 0;
    white-space: nowrap;
}

/* 60px 中文大標 — 設計稿 Swei Gothic → Noto Sans TC Medium */
.figma-hero-slide__title {
    font-family: var(--font-heading-cn);
    font-weight: 500;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.15;
    color: #ffffff;
    text-shadow: var(--figma-shadow-text);
    margin: 0;
}

.figma-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: center;
}

.figma-hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.figma-hero-dots button[aria-selected="true"] {
    background: #ffffff;
    transform: scale(1.15);
}

/* -------------------------------------------------------------------------
   裝飾向量（引言區塊背後、置中大弧形）
   ------------------------------------------------------------------------- */
.figma-deco-intro {
    position: absolute;
    left: 60%;
    transform: translateX(10rem) translateY(10rem) scale(4.3);
    max-width: 500px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.figma-deco-intro img {
    display: block;
    width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------
   Intro 引言區
   ------------------------------------------------------------------------- */
.figma-intro {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    padding: 72px 20px 80px;
    margin: 0 auto;
    text-align: center;
    overflow: visible;
}

.figma-intro> :not(.figma-deco-intro) {
    position: relative;
    z-index: 1;
}

.figma-intro__quote-icon {
    width: auto;
    max-width: 72px;
    height: auto;
    margin: 0 auto 20px;
}

.figma-intro__text {
    font-family: var(--font-zh);
    font-weight: 300;
    font-size: 20px;
    line-height: 48px;
    color: var(--figma-text);
    margin: 0 auto 40px;
    max-width: 554px;
}

.figma-btn-outline {
    background: transparent;
    font-family: var(--font-ui);
    font-weight: 400;
    color: var(--figma-text);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.figma-btn-outline:hover {
    background: var(--figma-text);
    color: #ffffff;
}

/* 引言「查看更多」與品牌三列按鈕（桌面同規格） */
.figma-intro .figma-btn-outline,
.figma-feature-row__text .figma-btn-outline {
    display: flex;
    width: 151px;
    height: 32px;
    padding: 4px 35px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border: 1px solid #333;
    font-size: 14px;
    line-height: 1.2;
}

.figma-intro .figma-btn-outline {
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------------------
   品牌區塊（交錯圖文）
   ------------------------------------------------------------------------- */
.figma-features {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--figma-max);
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 48px;
    box-sizing: border-box;
}

/* 三列緊貼、圖片角落相鄰呈階梯交錯（僅桌面 grid） */
.figma-features>article {
    margin: 0;
}

.figma-feature-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
}

.figma-feature-row--reverse {
    direction: rtl;
}

.figma-feature-row--reverse>* {
    direction: ltr;
}

.figma-feature-row__media {
    min-height: 280px;
    height: 100%;
    align-self: stretch;
}

.figma-feature-row__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.figma-feature-row__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px 48px 56px;
    max-width: min(100%, 560px);
    box-sizing: border-box;
}

.figma-feature-row--reverse .figma-feature-row__text {
    padding: 48px 56px 48px 40px;
    margin-left: auto;
}

.figma-feature-row__title {
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: var(--figma-blue);
    margin: 0 0 16px;
}

.figma-feature-row__title--nowrap {
    white-space: nowrap;
}

.figma-feature-row__body {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: var(--figma-text);
    margin: 0 0 24px;
}

@media (max-width: 900px) {

    .figma-feature-row,
    .figma-feature-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .figma-feature-row__media {
        height: auto;
        align-self: auto;
    }

    .figma-feature-row--reverse .figma-feature-row__text {
        margin-left: 0;
        padding: 32px 20px;
    }

    .figma-feature-row__text {
        padding: 32px 20px;
        max-width: none;
    }

    .figma-feature-row__title--nowrap {
        white-space: normal;
    }
}

/* -------------------------------------------------------------------------
   首頁主內容帶（Hero～聯絡我們；弧線背景僅 footer 外可延伸，帶底裁切）
   ------------------------------------------------------------------------- */
.figma-home-mid-band {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* 以「帶狀區底部」為錨點向上延伸，避免整段變高後 flex 垂直置中把圖拉到 Hero 中段 */
.figma-home-mid-band__deco {
    position: absolute;
    left: clamp(12px, 4vw, 40px);
    bottom: 0;
    top: auto;
    width: min(38vw, 380px);
    max-width: 420px;
    height: min(130vh, 1680px);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    line-height: 0;
}

.figma-home-mid-band__deco img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: translateX(-22rem) scale(3);
    transform-origin: left center;
}

/* -------------------------------------------------------------------------
   Process 流程 + 裝飾
   ------------------------------------------------------------------------- */
.figma-process-wrap {
    position: relative;
    z-index: 1;
    padding: 56px 20px 72px;
    max-width: var(--figma-max);
    margin: 0 auto;
}

.figma-deco-process {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%) rotate(-90deg);
    width: min(120vw, 1141px);
    max-width: none;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.figma-deco-process img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.figma-process__label {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: var(--font-zh);
    font-weight: 700;
    font-size: 20px;
    color: var(--figma-blue);
    margin: 0 0 14px;
}

.figma-process__track {
    position: relative;
    width: 100%;
    max-width: 876px;
    margin: 0 auto;
    padding-top: 2px;
}

/* 876×1.5px 橫線穿過四個圓點圓心（與設計稿一致） */
.figma-process__line {
    position: absolute;
    left: 50%;
    top: 10px;
    z-index: 1;
    width: 876px;
    max-width: 100%;
    height: 1.5px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #444444;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.figma-process__steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 12px;
    align-items: start;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.figma-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    min-width: 0;
}

.figma-process__num {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--figma-blue);
    color: #ffffff;
    font-family: "Arial", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.figma-process__caption {
    font-family: var(--font-ui);
    font-size: clamp(13px, 1.65vw, 18px);
    font-weight: 400;
    line-height: 1.35;
    color: var(--figma-text);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .figma-process__line {
        display: none;
    }

    .figma-process__steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* 垂直線上下各 12px，避免線段貼住下方圓點（與文字→線段上緣間距對稱） */
    .figma-process__step {
        gap: 0;
    }

    .figma-process__num {
        margin-bottom: 12px;
    }

    .figma-process__step:not(:last-child)::after {
        content: "";
        display: block;
        width: 1.5px;
        height: 55px;
        margin: 12px auto;
        background: #444444;
        flex-shrink: 0;
    }

    .figma-process__caption {
        white-space: normal;
    }
}

/* -------------------------------------------------------------------------
   聯絡表單
   ------------------------------------------------------------------------- */
.figma-contact {
    position: relative;
    z-index: 1;
    padding: 40px 32px 96px;
}

.figma-contact__card {
    position: relative;
    z-index: 1;
    max-width: 932px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #3e73b6;
    box-shadow: 4px 4px 23px rgba(0, 58, 131, 0.3);
    padding: 38px 24px 40px;
}

.figma-contact__title {
    font-family: var(--font-zh);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin: 0 0 24px;
    background: linear-gradient(3.33deg, #3e73b6 13.31%, #b7e6f2 94.82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.figma-contact-success {
    position: relative;
    z-index: 2;
    max-width: 932px;
    margin: 0 auto 20px;
    padding: 12px 16px;
    background: #e8f4fc;
    border: 1px solid var(--figma-blue);
    color: var(--figma-text);
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
}

.figma-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.figma-contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.figma-contact__field--full {
    grid-column: 1 / -1;
}

.figma-contact__field label {
    font-family: var(--font-zh);
    font-size: 12px;
    color: var(--figma-muted);
}

.figma-contact__field input,
.figma-contact__field select,
.figma-contact__field textarea {
    width: 100%;
    height: 40px;
    border: 1px solid var(--figma-border);
    padding: 8px 10px;
    font-family: var(--font-zh);
    font-size: 12px;
    color: var(--figma-text);
    background: #fff;
}

.figma-contact__field input::placeholder,
.figma-contact__field textarea::placeholder {
    color: var(--figma-muted);
    font-size: 12px;
}

.figma-contact__field textarea {
    min-height: 80px;
    height: auto;
    resize: vertical;
}

.figma-contact__select-wrap {
    position: relative;
}

.figma-contact__select-wrap select {
    appearance: none;
    padding-right: 32px;
}

.figma-contact__select-wrap::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background: url("../img/figma-home/select-arrow.svg") center / contain no-repeat;
    pointer-events: none;
}

.figma-contact__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.figma-contact__submit {
    min-width: 200px;
    height: 38px;
    border: none;
    cursor: pointer;
    font-family: var(--font-zh);
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    background: linear-gradient(90deg, #0059ca 0%, #dcd397 100%);
    transition: opacity 0.2s;
}

.figma-contact__submit:hover {
    opacity: 0.92;
}

@media (max-width: 900px) {
    .figma-home-mid-band__deco {
        left: 50%;
        right: auto;
        top: 32px;
        bottom: auto;
        width: min(78vw, 300px);
        max-width: none;
        height: auto;
        transform: translateX(-50%);
        align-items: flex-start;
    }

    .figma-home-mid-band__deco img {
        transform: none;
        max-height: 200px;
        margin: 0 auto;
        object-position: center;
    }
}


/* -------------------------------------------------------------------------
   Figma 頁尾（深藍 + 向量底）
   ------------------------------------------------------------------------- */
.figma-home-footer {
    position: relative;
    z-index: 2;
    min-height: 420px;
    color: #ffffff;
    overflow: hidden;
}

.figma-home-footer__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.figma-home-footer__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.figma-home-footer__inner {
    position: relative;
    z-index: 1;
    max-width: var(--figma-max);
    margin: 0 auto;
    padding: 120px 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.figma-home-footer__contact h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15.888px;
    margin: 0 0 17px;
    color: #ffffff;
}

.figma-home-footer__contact address {
    font-family: var(--font-zh);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
}

.figma-home-footer__contact address p {
    margin: 0 0 0.5em;
}

.figma-home-footer__contact address p:last-child {
    margin-bottom: 0;
}

.figma-home-footer__contact a {
    color: #ffffff;
    text-decoration: none;
}

.figma-home-footer__contact a:hover {
    text-decoration: underline;
}

.figma-home-footer__copy {
    font-family: var(--font-zh);
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    opacity: 0.85;
}

/* 行動版頁尾：figma-home-footer-mobile.css（Figma 2001:366） */

/* -------------------------------------------------------------------------
   首頁 Figma 行動版（node 40:284，max-width: 900px）
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .figma-hero {
        aspect-ratio: 375 / 224;
    }

    .figma-hero-slide__content {
        gap: 6px;
        padding: 16px;
        max-width: 280px;
    }

    .figma-hero-slide__j {
        width: 22px;
    }

    .figma-hero-slide__brand {
        width: min(73px, 46vw);
    }

    .figma-hero-slide__title {
        font-size: 18.75px;
        line-height: normal;
    }

    .figma-hero-slide__sub {
        font-size: 12.5px;
        line-height: 1.5;
        white-space: normal;
        text-shadow: 0 1.25px 3.125px #003a83;
    }

    .figma-hero-slide__badge {
        width: 53px;
        max-width: none;
    }

    .figma-hero-dots {
        bottom: 14px;
        gap: 6px;
    }

    .figma-hero-dots button {
        width: 7px;
        height: 7px;
    }

    .figma-hero-dots button[aria-selected="true"] {
        transform: scale(1.12);
    }

    /* Figma 40:524 引言區藍弧：行動版略往右對齊稿面 */
    .figma-deco-intro {
        left: 58%;
        transform: translateX(-24%) translateY(0.5rem) scale(1.85);
        max-width: 320px;
        opacity: 0.55;
    }

    .figma-intro {
        padding: 36px 20px 44px;
    }

    .figma-intro__quote-icon {
        max-width: 40px;
        margin-bottom: 10px;
    }

    .figma-intro__text {
        font-size: 12px;
        line-height: 24px;
        font-weight: 300;
        max-width: 220px;
        margin-bottom: 16px;
    }

    /* 圖文區照片滿版寬、完整顯示不裁切（Hero 輪播不在此規則內） */
    .figma-features {
        margin-top: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .figma-feature-row__media {
        min-height: 0;
        height: auto;
        max-height: none;
        overflow: visible;
        width: 100%;
    }

    .figma-feature-row__media picture {
        display: block;
        width: 100%;
        height: auto;
        line-height: 0;
    }

    .figma-feature-row__media img {
        width: 100%;
        height: auto;
        min-height: 0;
        display: block;
    }

    .figma-feature-row__title {
        font-size: 13px;
        margin-bottom: 12px;
        text-align: center;
    }

    .figma-feature-row__body {
        font-size: 12px;
        line-height: 24px;
        max-width: 228px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        text-align: center;
    }

    .figma-intro .figma-btn-outline,
    .figma-feature-row__text .figma-btn-outline {
        display: flex;
        width: 84px;
        height: 18px;
        padding: 2px 16px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        border: 0.561px solid #333;
        font-size: 10px;
        line-height: 1.2;
        margin-left: auto;
        margin-right: auto;
    }

    .figma-feature-row__text .figma-btn-outline {
        align-self: center;
    }

    /* Figma 40:682 流程區半弧裝飾：維持比例不拉伸、貼齊左側（設計稿 Vector x≈-50） */
    .figma-deco-process {
        opacity: 0.58;
        left: 0;
        right: auto;
        top: 50%;
        margin-left: calc(-1 * clamp(12px, 4vw, 28px));
        /* 取消旋轉，並將寬度調整為縮放後的比例 (原本 44vw * 1.3 ≈ 57vw) */
        width: min(57vw, 240px);
        max-width: none;
        transform-origin: left center;
        transform: translateY(-50%);
    }

    .figma-process-wrap {
        padding: 36px 20px 48px;
    }

    .figma-process__label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .figma-process__caption {
        font-size: 18px;
        line-height: 1.35;
    }

    .figma-contact {
        padding: 28px 20px 64px;
    }

    .figma-contact__card {
        max-width: 310px;
        padding: 38px 15px 40px;
    }

    .figma-contact__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 280px;
    }
}

/* -------------------------------------------------------------------------
   SVG Display Logic for Desktop / Mobile
   ------------------------------------------------------------------------- */
.figma-deco-mobile {
    display: none !important;
}

@media (max-width: 900px) {
    .figma-deco-desktop {
        display: none !important;
    }

    .figma-deco-mobile {
        display: block !important;
        width: 100%;
        height: auto;
    }
}