/* ==========================================
   HeartGuard Care Website
   V2 Complete Stylesheet
========================================== */


/* ==========================================
   01. CSS Variables
========================================== */

:root {
    --color-primary: #223a70;
    --color-primary-dark: #182b55;
    --color-primary-light: #eef4fb;

    --color-accent: #d97986;
    --color-accent-dark: #c86170;
    --color-accent-light: #fff1f3;

    --color-text: #4f5d75;
    --color-text-light: #6d788a;

    --color-white: #ffffff;
    --color-background: #f8fafc;
    --color-background-soft: #f3f7fb;
    --color-border: #e7edf3;

    --shadow-small: 0 8px 24px rgba(34, 58, 112, 0.06);
    --shadow-medium: 0 16px 38px rgba(34, 58, 112, 0.10);
    --shadow-large: 0 24px 60px rgba(34, 58, 112, 0.14);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 26px;
    --radius-pill: 999px;

    --container-width: 1200px;
    --header-height: 82px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}


/* ==========================================
   02. Reset / Global
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--color-primary);
    background: var(--color-white);

    font-family:
        Arial,
        "PingFang TC",
        "Noto Sans TC",
        "Microsoft JhengHei",
        sans-serif;

    font-size: 16px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

svg {
    display: block;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    display: block;
}

section {
    position: relative;
}

::selection {
    color: var(--color-white);
    background: var(--color-accent);
}

.container {
    width: min(100% - 48px, var(--container-width));
    margin: 0 auto;
}


/* ==========================================
   03. Header / Navbar
========================================== */

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(231, 237, 243, 0.9);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

nav {
    width: min(100%, 1440px);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 10px 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo img {
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

nav ul {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
}

nav ul li {
    margin: 0;
    padding: 0;
}

nav ul a {
    position: relative;

    display: inline-flex;
    align-items: center;
    min-height: 42px;

    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;

    transition: color var(--transition-fast);
}

nav ul a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 5px;

    width: 0;
    height: 2px;

    background: var(--color-accent);
    border-radius: var(--radius-pill);

    transition: width var(--transition-fast);
}

nav ul a:hover,
nav ul a.active {
    color: var(--color-accent);
}

nav ul a:hover::after,
nav ul a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;
    padding: 0;

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

    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    width: 21px;
    height: 2px;

    display: block;

    background: currentColor;
    border-radius: var(--radius-pill);

    transition: transform var(--transition-normal),
                opacity var(--transition-normal);
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}


/* ==========================================
   04. Shared Section Heading
========================================== */

.section-heading {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 14px;

    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
    margin: 0;

    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

.section-heading h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 5vw, 48px);
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 42px);
}

.section-heading p,
.section-subtitle {
    max-width: 760px;
    margin: 0 auto;

    color: var(--color-text);
    font-size: 19px;
    line-height: 1.9;
}


/* ==========================================
   05. Buttons
========================================== */

.btn {
    min-width: 150px;
    min-height: 50px;
    padding: 13px 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid var(--color-primary);
    border-radius: var(--radius-pill);

    font-size: 16px;
    font-weight: 700;
    text-align: center;

    transition:
        transform var(--transition-fast),
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(34, 58, 112, 0.15);
}

.btn-primary {
    color: var(--color-white);
    background: var(--color-primary);
}

.btn-primary:hover {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary {
    color: var(--color-primary);
    background: var(--color-white);
}

.btn-secondary:hover {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-light {
    color: var(--color-primary);
    background: var(--color-white);
    border-color: var(--color-white);
}

.btn-light:hover {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
}


/* ==========================================
   06. Hero
========================================== */

#hero {
    min-height: calc(100vh - var(--header-height));
    padding: 110px 24px;

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

    overflow: hidden;
    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(217, 121, 134, 0.11), transparent 26%),
        radial-gradient(circle at 85% 25%, rgba(114, 167, 215, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

#hero::before,
#hero::after {
    content: "";

    position: absolute;
    z-index: 0;

    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

#hero::before {
    top: 12%;
    left: -90px;

    width: 230px;
    height: 230px;

    background: rgba(217, 121, 134, 0.08);
}

#hero::after {
    right: -120px;
    bottom: 8%;

    width: 310px;
    height: 310px;

    background: rgba(99, 154, 204, 0.10);
}

.hero-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.hero-logo {
    width: min(340px, 75vw);
    margin: 0 auto 32px;
}

#hero h1 {
    margin: 0 0 28px;

    color: var(--color-primary);
    font-size: clamp(38px, 6vw, 58px);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 3px;
}

.hero-slogan-zh {
    margin: 0 0 18px;

    color: #43526a;
    font-size: clamp(19px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 1px;
}

.hero-slogan-en {
    margin: 0 0 40px;

    color: var(--color-accent);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 1.1px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-note {
    margin: 24px 0 0;

    color: var(--color-text-light);
    font-size: 14px;
}


/* ==========================================
   07. About Page
========================================== */

#about {
    min-height: calc(100vh - var(--header-height));
    padding: 110px 24px;

    background:
        linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.about-container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.about-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;

    color: var(--color-text);
    font-size: 18px;
    line-height: 2;
}

.about-content p {
    margin: 0 0 26px;
    text-align: justify;
}

.about-highlight {
    margin-top: 52px;
    padding: 34px 38px;

    color: var(--color-primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.9;
    text-align: center;

    background: var(--color-background-soft);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.about-values {
    margin-top: 64px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    padding: 32px 26px;

    text-align: center;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.about-value-card h3 {
    margin: 18px 0 12px;

    color: var(--color-primary);
    font-size: 22px;
}

.about-value-card p {
    margin: 0;

    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   08. Services Page
========================================== */

#services-page,
#services {
    min-height: calc(100vh - var(--header-height));
    padding: 110px 24px;

    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.services-intro {
    max-width: 760px;
    margin: 22px auto 0;

    color: var(--color-text);
    font-size: 20px;
    line-height: 1.9;
    text-align: center;
}

.services-grid {
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    overflow: hidden;

    padding: 46px 34px;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 121, 134, 0.45);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;

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

    color: var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 18px;

    transition:
        color var(--transition-normal),
        background-color var(--transition-normal),
        transform var(--transition-normal);
}

.service-card:hover .service-icon {
    color: var(--color-white);
    background: var(--color-accent);
    transform: rotate(-3deg) scale(1.04);
}

.service-icon svg {
    width: 38px;
    height: 38px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h2,
.service-card h3 {
    margin: 26px 0 20px;

    color: var(--color-primary);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
}

.service-card > p {
    margin: 0 0 24px;

    color: var(--color-text);
    font-size: 17px;
    line-height: 1.9;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;

    margin-bottom: 17px;
    padding-left: 30px;

    color: #55657d;
    font-size: 18px;
    line-height: 1.8;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 1px;

    color: var(--color-accent);
    font-size: 18px;
    font-weight: 700;
}

.services-cta {
    margin-top: 90px;
    padding: 68px 46px;

    text-align: center;

    background:
        radial-gradient(circle at 20% 20%, rgba(217, 121, 134, 0.09), transparent 28%),
        var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-small);
}

.services-cta-title {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}

.services-cta p:not(.services-cta-title) {
    max-width: 720px;
    margin: 0 auto 34px;

    color: var(--color-text);
    font-size: 19px;
    line-height: 1.9;
}


/* ==========================================
   09. Features
========================================== */

#features {
    padding: 110px 24px;

    background: var(--color-white);
}

.features-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 34px 26px;

    text-align: center;

    background: var(--color-background);
    border: 1px solid transparent;
    border-radius: var(--radius-medium);

    transition:
        transform var(--transition-normal),
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--color-white);
    border-color: var(--color-border);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;

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

    color: var(--color-accent);
    background: var(--color-accent-light);
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin: 0 0 14px;

    color: var(--color-primary);
    font-size: 21px;
    line-height: 1.5;
}

.feature-card p {
    margin: 0;

    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   10. Process Page
========================================== */

/* 移除服務流程中的裝飾圖案 */
#process .process-icon,
#process-page .process-icon,
#process .step-icon,
#process-page .step-icon,
#process .process-number,
#process-page .process-number,
#process .process-step > svg,
#process-page .process-step > svg,
#process .process-card > svg,
#process-page .process-card > svg,
#process .process-step > img,
#process-page .process-step > img {
    display: none !important;
}


/* ==========================================
   Process 基本版面
========================================== */

#process-page,
#process {
    width: 100%;
    padding: 110px 24px;
    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.process-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.process-intro {
    width: 100%;
    max-width: 760px;
    margin: 28px auto 70px;

    color: var(--color-text);
    font-size: 20px;
    line-height: 1.9;
    text-align: center;
}


/* ==========================================
   Process Cards
========================================== */

.process-timeline {
    width: 100%;
    margin: 70px 0 90px;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

/* 不使用橫向時間軸線 */
.process-timeline::before {
    display: none;
}

.process-step {
    width: 100%;
    min-width: 0;
    margin: 0;

    display: block;
    text-align: left;
}

.process-card {
    width: 100%;
    min-width: 0;
    min-height: 240px;
    height: 100%;
    padding: 30px;

    box-sizing: border-box;
    overflow: hidden;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 121, 134, 0.4);
    box-shadow: var(--shadow-medium);
}

.process-label {
    margin: 0 0 12px;

    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.5px;

    white-space: normal;
    word-break: normal;
}

.process-card h3 {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.5;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.process-card p:not(.process-label) {
    margin: 0;

    color: var(--color-text);
    font-size: 16px;
    line-height: 1.9;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}


/* ==========================================
   Process CTA
========================================== */

.process-cta {
    width: 100%;
    margin-top: 80px;
    padding: 70px 50px;

    box-sizing: border-box;
    text-align: center;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-small);
}

.process-cta-title {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
}

.process-cta p:not(.process-cta-title) {
    max-width: 700px;
    margin: 0 auto 35px;

    color: var(--color-text);
    font-size: 19px;
    line-height: 1.9;
}


/* ==========================================
   Process 平板版
========================================== */

@media (max-width: 1100px) {

    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .process-card {
        min-height: 220px;
    }
}


/* ==========================================
   Process 手機版
========================================== */

@media (max-width: 768px) {

    #process-page,
    #process {
        padding: 72px 18px;
    }

    #process-page .section-heading,
    #process .section-heading {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #process-page .section-heading h1,
    #process .section-heading h1 {
        font-size: 34px;
        line-height: 1.35;
    }

    #process-page .section-heading h2,
    #process .section-heading h2 {
        max-width: 100%;
        margin-top: 14px;

        font-size: 23px;
        line-height: 1.55;

        white-space: normal;
        word-break: normal;
    }

    .process-intro {
        max-width: 100%;
        margin: 20px auto 46px;
        padding: 0;

        font-size: 16px;
        line-height: 1.9;

        white-space: normal;
        word-break: normal;
    }

    .process-timeline {
        width: 100%;
        margin: 42px 0 56px;

        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .process-step {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;

        display: block;
    }

    .process-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: auto;
        padding: 26px 22px;

        text-align: left;
        border-radius: 18px;
    }

    .process-card:hover {
        transform: none;
    }

    .process-label {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .process-card h3 {
        margin-bottom: 14px;
        font-size: 21px;
        line-height: 1.45;
    }

    .process-card p:not(.process-label) {
        font-size: 16px;
        line-height: 1.9;
    }

    .process-cta {
        margin-top: 56px;
        padding: 40px 22px;
        border-radius: 20px;
    }

    .process-cta-title {
        margin-bottom: 16px;
        font-size: 25px;
        line-height: 1.5;
    }

    .process-cta p:not(.process-cta-title) {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.9;
    }

    .process-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}


/* ==========================================
   Process 小尺寸手機
========================================== */

@media (max-width: 480px) {

    #process-page,
    #process {
        padding: 62px 16px;
    }

    #process-page .section-heading h1,
    #process .section-heading h1 {
        font-size: 31px;
    }

    #process-page .section-heading h2,
    #process .section-heading h2 {
        font-size: 21px;
    }

    .process-card {
        padding: 24px 20px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-cta {
        padding: 34px 20px;
    }

    .process-cta-title {
        font-size: 23px;
    }
}
/* ==========================================
   11. FAQ
========================================== */

#faq {
    padding: 110px 24px;
    background: var(--color-white);
}

.faq-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    overflow: hidden;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-small);

    transition:
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.faq-item.active {
    border-color: rgba(217, 121, 134, 0.45);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 24px 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: var(--color-primary);
    background: transparent;
    border: 0;

    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.faq-question::after {
    content: "+";

    flex-shrink: 0;

    color: var(--color-accent);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;

    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 26px 26px;

    color: var(--color-text);
    font-size: 17px;
    line-height: 1.9;
}

.faq-answer-inner p {
    margin: 0;
}


/* ==========================================
   12. Contact
========================================== */

#contact {
    padding: 110px 24px;

    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}

.contact-info,
.contact-form {
    padding: 42px;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-small);
}

.contact-info h3,
.contact-form h3 {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 28px;
}

.contact-info > p {
    margin: 0 0 30px;

    color: var(--color-text);
    font-size: 17px;
    line-height: 1.9;
}

.contact-list {
    margin: 0;
    padding: 0;

    display: grid;
    gap: 18px;

    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    color: var(--color-text);
    font-size: 16px;
}

.contact-list strong {
    display: block;
    margin-bottom: 2px;

    color: var(--color-primary);
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

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

    color: var(--color-accent);
    background: var(--color-accent-light);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;

    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    outline: none;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(217, 121, 134, 0.12);
}


/* ==========================================
   13. Main CTA
========================================== */

#cta,
.cta-section {
    padding: 90px 24px;

    color: var(--color-white);
    text-align: center;

    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.cta-section h2,
#cta h2 {
    margin: 0 0 18px;

    color: var(--color-white);
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.35;
}

.cta-section p,
#cta p {
    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.9;
}


/* ==========================================
   14. Footer
========================================== */

footer {
    color: rgba(255, 255, 255, 0.86);
    background: #182b55;
}

.footer-main {
    padding: 64px 24px 46px;
}

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 38px;
}

.footer-logo img {
    width: 210px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 320px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.9;
}

.footer-column h3 {
    margin: 0 0 18px;

    color: var(--color-white);
    font-size: 17px;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    display: grid;
    gap: 10px;

    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;

    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 22px 24px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p,
footer > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================
   15. Scroll Reveal Animation
========================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================
   16. Utility Classes
========================================== */

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

.text-left {
    text-align: left;
}

.text-accent {
    color: var(--color-accent);
}

.bg-soft {
    background: var(--color-background-soft);
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.hidden {
    display: none !important;
}


/* ==========================================
   17. Tablet
========================================== */

@media (max-width: 1024px) {

    :root {
        --header-height: 76px;
    }

    nav {
        padding: 10px 28px;
        gap: 24px;
    }

    .logo img {
        width: 185px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul a {
        font-size: 14px;
    }

    #hero {
        min-height: auto;
        padding: 100px 24px;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-card {
        padding: 40px;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 0;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 35px;
        right: auto;

        width: 3px;
        height: auto;
    }

    .process-step {
        max-width: 760px;
        width: 100%;
        margin: 0 auto 32px;

        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 24px;
        align-items: start;

        text-align: left;
    }

    .process-number {
        margin: 0;
    }

    .process-card {
        min-height: auto;
    }

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

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================
   18. Mobile
========================================== */

@media (max-width: 768px) {

    :root {
        --header-height: 70px;
    }

    .container {
        width: min(100% - 40px, var(--container-width));
    }


    nav {
        min-height: var(--header-height);
        padding: 12px 20px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
    }

    .logo {
        justify-self: start;
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    nav ul {
        grid-column: 1 / -1;
    }

    .logo img {
        width: 172px;
    }

    nav ul {
        width: 100%;
        max-height: 0;
        overflow: hidden;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        opacity: 0;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease;
    }

    nav ul.active {
        max-height: 520px;
        padding: 10px 0 6px;
        opacity: 1;
    }

    nav ul {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 14px 14px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul a {
        width: 100%;
        min-height: 46px;
        padding: 10px 4px;

        border-bottom: 1px solid var(--color-border);
    }

    nav ul li:last-child a {
        border-bottom: 0;
    }

    nav ul a::after {
        display: none;
    }

    #hero {
        min-height: auto;
        padding: 82px 20px;
    }

    #hero h1 {
        margin-bottom: 24px;

        font-size: 34px;
        line-height: 1.4;
        letter-spacing: 1.5px;
    }

    .hero-slogan-zh {
        font-size: 18px;
        line-height: 1.9;
    }

    .hero-slogan-en {
        margin-bottom: 34px;

        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;

        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    #about,
    #services,
    #services-page,
    #features,
    #process,
    #process-page,
    #faq,
    #contact {
        min-height: auto;
        padding: 76px 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p,
    .section-subtitle {
        font-size: 17px;
        line-height: 1.8;
    }

    .about-content {
        font-size: 16px;
        line-height: 1.9;
    }

    .about-content p {
        margin-bottom: 22px;
        text-align: left;
    }

    .about-highlight {
        margin-top: 40px;
        padding: 26px 20px;

        font-size: 18px;
        line-height: 1.8;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .services-intro,
    .process-intro {
        font-size: 17px;
    }

    .services-grid {
        margin-top: 46px;
        gap: 24px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h2,
    .service-card h3 {
        font-size: 24px;
    }

    .service-list li {
        font-size: 17px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .services-cta {
        margin-top: 60px;
        padding: 44px 24px;
    }

    .services-cta-title {
        font-size: 27px;
    }

    .services-cta p:not(.services-cta-title) {
        font-size: 17px;
    }

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

    .process-timeline {
        margin-top: 46px;
        margin-bottom: 60px;
    }

    .process-timeline::before {
        left: 29px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 18px;
    }

    .process-number {
        width: 60px;
        height: 60px;

        border-width: 5px;
        font-size: 22px;
    }

    .process-card {
        padding: 24px;
    }

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

    .process-card p {
        font-size: 16px;
    }

    .process-cta {
        padding: 42px 24px;
    }

    .process-cta-title {
        font-size: 28px;
    }

    .process-cta p {
        font-size: 17px;
    }

    .faq-question {
        padding: 20px;
        font-size: 17px;
    }

    .faq-answer-inner {
        padding: 0 20px 22px;
        font-size: 16px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 24px;
    }

    .cta-section,
    #cta {
        padding: 74px 20px;
    }

    .cta-section p,
    #cta p {
        font-size: 17px;
    }

    .footer-main {
        padding: 52px 20px 38px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}


/* ==========================================
   19. Small Mobile
========================================== */

@media (max-width: 480px) {

    .logo img {
        width: 160px;
    }

    #hero {
        padding: 70px 18px;
    }

    #hero h1 {
        font-size: 30px;
    }

    .hero-slogan-zh {
        font-size: 17px;
    }

    .hero-slogan-en {
        font-size: 14px;
    }

    .section-heading h1 {
        font-size: 30px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .service-card {
        padding: 26px 22px;
    }

    .services-cta-title,
    .process-cta-title {
        font-size: 24px;
    }

    .process-step {
        grid-template-columns: 52px 1fr;
        gap: 14px;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-number {
        width: 52px;
        height: 52px;

        font-size: 20px;
    }

    .process-card {
        padding: 22px 18px;
    }

    .contact-info,
    .contact-form {
        padding: 26px 20px;
    }

    .footer-logo img {
        width: 180px;
    
    }
}

/* ==========================================
   20. Accessibility
========================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(217, 121, 134, 0.35);
    outline-offset: 3px;
}

/* ==========================================
   21. About Beliefs / 品牌理念
========================================== */

.about-beliefs {
    margin-top: 100px;
}

.about-beliefs .section-heading {
    margin-bottom: 48px;
}

.about-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-belief-card {
    position: relative;
    min-height: 320px;
    padding: 36px 26px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.about-belief-card:hover {
    transform: translateY(-7px);
    border-color: rgba(217, 121, 134, 0.42);
    box-shadow: var(--shadow-medium);
}

.about-belief-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;

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

    color: var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 50%;

    transition:
        color var(--transition-normal),
        background-color var(--transition-normal),
        transform var(--transition-normal);
}

.about-belief-card:hover .about-belief-icon {
    color: var(--color-white);
    background: var(--color-accent);
    transform: scale(1.06);
}

.about-belief-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-belief-card h3 {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

.about-belief-highlight {
    margin: 0;

    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
}


/* ==========================================
   22. About CTA
========================================== */

.about-cta {
    margin-top: 88px;
    padding: 66px 46px;

    text-align: center;

    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(217, 121, 134, 0.09),
            transparent 28%
        ),
        var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-small);
}

.about-cta-title {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.45;
}

.about-cta p:not(.about-cta-title) {
    max-width: 700px;
    margin: 0 auto 32px;

    color: var(--color-text);
    font-size: 18px;
    line-height: 1.9;
}


/* ==========================================
   23. About Responsive
========================================== */

@media (max-width: 1024px) {

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

    .about-belief-card {
        min-height: 290px;
    }
}

@media (max-width: 768px) {

    .about-beliefs {
        margin-top: 72px;
    }

    .about-beliefs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-belief-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .about-belief-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .about-belief-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-belief-card h3 {
        font-size: 21px;
    }

    .about-belief-highlight {
        font-size: 17px;
    }

    .about-cta {
        margin-top: 64px;
        padding: 44px 24px;
    }

    .about-cta-title {
        font-size: 27px;
    }

    .about-cta p:not(.about-cta-title) {
        font-size: 17px;
    }
}

@media (max-width: 480px) {

    .about-belief-card {
        padding: 26px 20px;
    }

    .about-cta {
        padding: 38px 20px;
    }

    .about-cta-title {
        font-size: 24px;
    }
}
#contact-page .contact-qrcode .btn {
    width: auto;
    min-width: 180px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    #contact-page .contact-qrcode .btn {
        width: 100%;
        max-width: 260px;
    }
}/* ==========================================
   Contact Page V2
========================================== */

.contact-v2 {
    min-height: calc(100vh - var(--header-height));
    padding: 100px 24px;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(217, 121, 134, 0.08),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(114, 167, 215, 0.11),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.contact-v2-container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.contact-v2-card {
    overflow: hidden;

    display: grid;
    grid-template-columns: 0.82fr 1.18fr;

    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(34, 58, 112, 0.10);
}


/* QR Code */

.contact-v2-qr {
    padding: 60px 42px;

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

    text-align: center;

    background:
        linear-gradient(
            160deg,
            #f3f8fc 0%,
            #ffffff 100%
        );

    border-right: 1px solid var(--color-border);
}

.contact-v2-qr-frame {
    width: 245px;
    max-width: 100%;
    padding: 14px;

    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-small);
}

.contact-v2-qr-frame img {
    width: 100%;
    height: auto;
}

.contact-v2-qr-title {
    margin: 26px 0 8px;

    color: var(--color-primary);
    font-size: 19px;
    font-weight: 700;
}




/* Content */

.contact-v2-content {
    padding: 60px 54px;
}

.contact-v2-label {
    margin: 0 0 12px;

    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.contact-v2-content h2 {
    margin: 0 0 18px;

    color: var(--color-primary);
    font-size: 32px;
    line-height: 1.4;
}

.contact-v2-description {
    margin: 0 0 34px;

    color: var(--color-text);
    font-size: 17px;
    line-height: 1.9;
}

.contact-v2-options {
    display: grid;
    gap: 16px;
}

.contact-v2-option {
    padding: 22px;

    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;

    background: var(--color-background);
    border: 1px solid transparent;
    border-radius: 16px;

    transition:
        transform var(--transition-normal),
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.contact-v2-option:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: var(--color-border);
    box-shadow: var(--shadow-small);
}

.contact-v2-option-icon {
    width: 52px;
    height: 52px;

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

    color: var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 14px;
}

.contact-v2-option-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-v2-option h3 {
    margin: 0 0 6px;

    color: var(--color-primary);
    font-size: 18px;
}

.contact-v2-option p {
    margin: 0;

    color: var(--color-text);
    font-size: 15px;
    line-height: 1.8;
}

.contact-v2-button {
    margin-top: 32px;
}


/* Tablet */

@media (max-width: 900px) {

    .contact-v2-card {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-v2-qr {
        padding: 48px 30px;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .contact-v2-qr-frame {
        width: 220px;
    }

    .contact-v2-content {
        padding: 48px 38px;
    }
}


/* Mobile */

@media (max-width: 768px) {

    .contact-v2 {
        min-height: auto;
        padding: 72px 20px;
    }

    .contact-v2-card {
        border-radius: 22px;
    }

    .contact-v2-qr {
        padding: 38px 24px;
    }

    .contact-v2-qr-frame {
        width: 190px;
    }

    .contact-v2-qr-title {
        margin-top: 20px;
        font-size: 17px;
    }

    .contact-v2-content {
        padding: 36px 24px;
    }

    .contact-v2-content h2 {
        font-size: 26px;
    }

    .contact-v2-description {
        font-size: 16px;
    }

    .contact-v2-option {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .contact-v2-option-icon {
        width: 46px;
        height: 46px;
    }

    .contact-v2-option h3 {
        font-size: 17px;
    }

    .contact-v2-option p {
        font-size: 14px;
    }

    .contact-v2-button {
        width: 100%;
    }
}


/* Small Mobile */

@media (max-width: 480px) {

    .contact-v2 {
        padding: 64px 16px;
    }

    .contact-v2-content {
        padding: 32px 20px;
    }

    .contact-v2-option {
        grid-template-columns: 1fr;
    }
}.contact-v2-email{

    margin-top:24px;

}

.contact-v2-email span{

    display:block;

    margin-bottom:6px;

    color:var(--color-accent);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-v2-email a{

    color:var(--color-primary);

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.contact-v2-email a:hover{

    color:var(--color-accent);

    text-decoration:underline;

}/* Instagram / Social Icon */

.contact-social-icon{

    width:56px;
    height:56px;

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

    flex-shrink:0;

    background:#F4F8FC;

    border-radius:16px;

    transition:
        background-color .3s,
        transform .3s;

}

.contact-social-card:hover .contact-social-icon{

    background:var(--color-primary-light);

    transform:scale(1.05);

}

.contact-social-icon svg{

    width:30px;
    height:30px;

    fill:none;

    stroke:var(--color-primary);

    stroke-width:2;

    stroke-linecap:round;

    stroke-linejoin:round;

    transition:stroke .3s;

}

.contact-social-card:hover .contact-social-icon svg{

    stroke:var(--color-accent);

}/* ==========================================
   Process Mobile Final Fix
========================================== */

@media (max-width: 768px) {

    #process-page {
        width: 100%;
        padding: 72px 18px;
        overflow-x: hidden;
    }

    #process-page .process-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    #process-page .section-heading {
        width: 100%;
        max-width: 100%;
        margin-bottom: 42px;
        padding: 0;
        text-align: center;
    }

    #process-page .section-heading h1,
    #process-page .section-heading h2,
    #process-page .section-heading p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    #process-page .section-heading h1 {
        font-size: 34px;
        line-height: 1.35;
    }

    #process-page .section-heading h2 {
        margin-top: 14px;
        font-size: 23px;
        line-height: 1.55;
    }

    #process-page .process-intro {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0 4px;

        font-size: 16px;
        line-height: 1.9;
        text-align: center;
    }

    #process-page .process-timeline {
        width: 100%;
        max-width: 100%;
        margin: 42px 0 56px;

        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    #process-page .process-timeline::before,
    #process-page .process-step::before,
    #process-page .process-step::after {
        display: none !important;
    }

    #process-page .process-step {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;

        display: block;
        grid-template-columns: none;
    }

    #process-page .process-icon,
    #process-page .process-number,
    #process-page .step-icon {
        display: none !important;
    }

    #process-page .process-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        margin: 0;
        padding: 26px 22px;

        box-sizing: border-box;

        text-align: left;

        border-radius: 18px;
        overflow: hidden;
    }

    #process-page .process-card:hover {
        transform: none;
    }

    #process-page .process-label {
        margin-bottom: 10px;

        font-size: 12px;
        letter-spacing: 1.4px;
    }

    #process-page .process-card h3 {
        margin-bottom: 14px;

        font-size: 21px;
        line-height: 1.45;
    }

    #process-page .process-card p:not(.process-label) {
        margin: 0;

        font-size: 16px;
        line-height: 1.9;
        overflow-wrap: break-word;
    }

    #process-page .process-cta {
        width: 100%;
        max-width: 100%;
        margin-top: 56px;
        padding: 38px 22px;

        box-sizing: border-box;
        border-radius: 20px;
    }

    #process-page .process-cta-title {
        margin-bottom: 16px;

        font-size: 25px;
        line-height: 1.5;
    }

    #process-page .process-cta p:not(.process-cta-title) {
        margin-bottom: 28px;

        font-size: 16px;
        line-height: 1.9;
    }

    #process-page .process-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}


/* 更小尺寸手機 */

@media (max-width: 480px) {

    #process-page {
        padding: 62px 16px;
    }

    #process-page .section-heading h1 {
        font-size: 31px;
    }

    #process-page .section-heading h2 {
        font-size: 21px;
    }

    #process-page .process-card {
        padding: 24px 20px;
    }

    #process-page .process-card h3 {
        font-size: 20px;
    }

    #process-page .process-cta {
        padding: 34px 20px;
    }

    #process-page .process-cta-title {
        font-size: 23px;
    }
}.process-intro br {
    content: "";
    display: block !important;
}