/* ============================================================
   service.css — 服務頁共用視覺加強
   給 web-design.html / seo-marketing.html / pricing.html 使用
   主色由 .service-page / .pricing-page 內的 --accent 變數控制：
     金色系（網頁設計、方案）：--accent: #a1845d
     藍色系（SEO 行銷）       ：--accent: #007aff
   ============================================================ */

/* === Body 微妙紋理底色 === */
body.main {
    background:
        radial-gradient(ellipse 600px 400px at top right, rgba(161, 132, 93, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at bottom left, rgba(0, 122, 255, 0.04) 0%, transparent 70%),
        #fafaf7;
}

/* === Hero 標題區：漸層背景 + 裝飾光暈 === */
.service-page .page-title,
.pricing-page .page-title {
    position: relative;
    padding: 70px 50px 80px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #fff 0%, #f5f0e8 50%, #fafaf7 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(161, 132, 93, 0.06);
    overflow: hidden;
}
.service-page .page-title::before,
.pricing-page .page-title::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .page-title::after,
.pricing-page .page-title::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .page-title > *,
.pricing-page .page-title > * {
    position: relative;
    z-index: 1;
}
.service-page .page-title h1,
.pricing-page .page-title h1 {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* === Section title 加上方裝飾菱形 === */
.service-page .section-title,
.pricing-page .section-title {
    position: relative;
    padding-top: 50px;
}
.service-page .section-title::before,
.pricing-page .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 2px solid var(--accent, #a1845d);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.5);
}

/* === 服務卡圖示徽章 === */
.service-page .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    padding: 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #fafaf7 100%);
    border: 1px solid rgba(161, 132, 93, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #a1845d);
    box-shadow:
        0 6px 20px rgba(161, 132, 93, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 外圍虛線環，hover 才出現 */
.service-page .service-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(161, 132, 93, 0.3);
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.4s ease;
    pointer-events: none;
}
/* 藍色主題：邊框、陰影、虛線環換色 */
.service-page[data-theme="blue"] .service-icon {
    border-color: rgba(0, 122, 255, 0.18);
    color: #007aff;
    box-shadow:
        0 6px 20px rgba(0, 122, 255, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.service-page[data-theme="blue"] .service-icon::after {
    border-color: rgba(0, 122, 255, 0.3);
}
/* 用 PNG/IMG 的版本：圖片直接呈現，不加圓底 */
.service-page .service-icon--img {
    width: 64px;
    height: 64px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.service-page[data-theme="blue"] .service-icon--img {
    background: transparent;
    box-shadow: none;
}
.service-page .service-icon--img img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.service-page .service-card:hover .service-icon--img {
    background: transparent;
    box-shadow: none;
}
.service-page[data-theme="blue"] .service-card:hover .service-icon--img {
    background: transparent;
    box-shadow: none;
}
.service-page .service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--accent, #a1845d);
    opacity: 0.12;
    z-index: -1;
    transition: all 0.4s;
}
.service-page .service-card:hover .service-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(161, 132, 93, 0.35);
}
.service-page .service-card:hover .service-icon::before {
    inset: -10px;
    opacity: 0.2;
}
.service-page .service-icon svg {
    width: 38px;
    height: 38px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* SEO 頁藍色圖示 */
.service-page[data-theme="blue"] .service-icon {
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.25);
}
.service-page[data-theme="blue"] .service-icon::before {
    background: #007aff;
}
.service-page[data-theme="blue"] .service-card:hover .service-icon {
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.35);
}

/* === 服務卡：漸層 + 立體 + 上緣動效 === */
.service-page .service-card {
    background: linear-gradient(180deg, #fff 0%, #fafaf7 100%);
    border: 1px solid #f0e8da;
    box-shadow: 0 4px 20px rgba(161, 132, 93, 0.06);
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}
.service-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent, #a1845d) 50%, transparent 100%);
    transform: translateY(-4px);
    transition: transform 0.3s;
}
.service-page .service-card:hover::before {
    transform: translateY(0);
}
.service-page .service-card::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
    transition: all 0.4s;
}
.service-page .service-card:hover {
    box-shadow: 0 16px 40px rgba(161, 132, 93, 0.18);
    transform: translateY(-8px);
    border-color: var(--accent, #a1845d);
}
.service-page .service-card:hover::after {
    opacity: 0.15;
    transform: scale(1.5);
}

/* === Why-card / achievement-card 圖示 === */
.service-page .why-icon,
.service-page .achievement-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(161, 132, 93, 0.12);
    transition: all 0.3s;
}
/* PNG 版：透明底、80×80 直接呈現 */
.service-page .why-icon--img,
.service-page .achievement-icon--img {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    margin: 0 auto 16px;
}
.service-page .why-icon--img img,
.service-page .achievement-icon--img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.service-page .why-card:hover .why-icon--img,
.service-page .achievement-card:hover .achievement-icon--img {
    background: transparent;
    transform: translateY(-3px) scale(1.05);
}
.service-page[data-theme="blue"] .achievement-icon {
    background: rgba(0, 122, 255, 0.12);
}
.service-page .why-icon svg,
.service-page .achievement-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent, #a1845d);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-page .why-card:hover .why-icon,
.service-page .achievement-card:hover .achievement-icon {
    transform: translateY(-3px) scale(1.05);
    background: rgba(161, 132, 93, 0.2);
}
.service-page[data-theme="blue"] .achievement-card:hover .achievement-icon {
    background: rgba(0, 122, 255, 0.2);
}

/* === 流程步驟內 SVG（如果還保留 SVG 的頁面用） === */
.service-page .process-item .step svg,
.pricing-page .pay-step .num svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-page .step-label,
.pricing-page .step-label {
    font-size: 11px;
    color: var(--accent, #a1845d);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* === 方案卡圖示（pricing 頁） === */
.pricing-page .plan-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(161, 132, 93, 0.25);
    position: relative;
    transition: all 0.4s;
}
.pricing-page .plan-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--accent, #a1845d);
    opacity: 0.1;
    z-index: -1;
}
.pricing-page .plan-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pricing-page .plan-card:hover .plan-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 10px 24px rgba(161, 132, 93, 0.35);
}
.pricing-page .plan-card.featured .plan-icon {
    width: 72px;
    height: 72px;
}
/* 方案卡用真實照片版：拿掉金色圓底、放大成卡圖 */
.pricing-page .plan-icon--img {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 0 24px;
    overflow: hidden;
}
.pricing-page .plan-icon--img::before {
    display: none;
}
.pricing-page .plan-icon--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.pricing-page .plan-card:hover .plan-icon--img img {
    transform: scale(1.05);
}
.pricing-page .plan-card.featured .plan-icon--img {
    width: 100%;
    height: 180px;
}

/* === Why-section 全視窗底色區 === */
.service-page .why-section {
    background-color: #f5f1eb;
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}
.service-page .why-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .why-section::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .why-section > * {
    position: relative;
    z-index: 1;
}
/* 在 why-section 內，把 section-title 的上方間距收起來 */
.service-page .why-section .section-title {
    margin-top: 0;
    padding-top: 30px;
}
/* 覆寫 why-grid，移除自身底色與裝飾，讓全寬底色乾淨呈現 */
.service-page .why-section .why-grid {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 30px 0 0;
}
.service-page .why-section .why-grid::before,
.service-page .why-section .why-grid::after {
    display: none;
}

/* === Why grid（保留原樣式給其他不在 why-section 內的情境）=== */
.service-page .why-grid {
    background: linear-gradient(135deg, #f5f0e8 0%, #fafaf7 100%);
    padding: 60px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 60px rgba(161, 132, 93, 0.05);
}
.service-page .why-grid::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .why-grid::after {
    content: '';
    position: absolute;
    left: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .why-grid > * {
    position: relative;
    z-index: 1;
}
.service-page .why-card .num {
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SEO 頁的數字 */
.service-page .achievement-grid {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.04) 0%, #fafaf7 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 60px rgba(0, 122, 255, 0.04);
}
.service-page .achievement-grid::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #007aff 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}
.service-page .achievement-card .num {
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === 流程：圓形編號徽章 + 連接線 === */
.service-page .process-list {
    position: relative;
    padding: 20px 0;
}
.service-page .process-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent, #a1845d) 20%, var(--accent, #a1845d) 80%, transparent 100%);
    opacity: 0.25;
    transform: translateY(-50%);
    z-index: 0;
}
.service-page .process-item {
    background: #fff;
    border-top: none;
    border: 1px solid #f0e8da;
    box-shadow: 0 4px 16px rgba(161, 132, 93, 0.06);
    border-radius: 8px;
    padding: 30px 15px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.service-page .process-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(161, 132, 93, 0.18);
    border-color: var(--accent, #a1845d);
}
.service-page .process-item .step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    margin: -45px auto 12px;
    box-shadow: 0 6px 16px rgba(161, 132, 93, 0.3);
    border: 4px solid #fafaf7;
    line-height: 1.2;
    text-align: center;
}

/* SEO 流程藍色 */
.service-page[data-theme="blue"] .process-list::before {
    background: linear-gradient(90deg, transparent 0%, #007aff 20%, #007aff 80%, transparent 100%);
    opacity: 0.25;
}
.service-page[data-theme="blue"] .process-item .step {
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
}

/* === Price teaser 立體化 === */
.service-page .price-teaser {
    background: linear-gradient(135deg, #fff 0%, #f5f0e8 100%);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(161, 132, 93, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0e8da;
}
.service-page .price-teaser::before {
    content: '$';
    position: absolute;
    right: 30px;
    top: -20px;
    font-size: 200px;
    font-weight: bold;
    color: var(--accent, #a1845d);
    opacity: 0.06;
    pointer-events: none;
    line-height: 1;
}
.service-page .price-teaser::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}
.service-page .price-teaser > * {
    position: relative;
    z-index: 1;
}

/* === FAQ 卡片化 === */
.service-page .faq-item,
.pricing-page .faq-item {
    background: #fff;
    border: 1px solid #f0e8da;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 12px;
    transition: all 0.3s;
    position: relative;
}
.service-page .faq-item:hover,
.pricing-page .faq-item:hover {
    border-color: var(--accent, #a1845d);
    box-shadow: 0 6px 20px rgba(161, 132, 93, 0.1);
    transform: translateX(4px);
}
.service-page .faq-item .q::before,
.pricing-page .faq-item .q::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent, #a1845d);
    color: #fff;
    font-size: 13px;
    top: -2px;
    left: -4px;
}

/* === CTA 加波點 pattern === */
.service-page .cta-block,
.pricing-page .cta-block {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(161, 132, 93, 0.25);
}
.service-page .cta-block::before,
.pricing-page .cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.12) 2px, transparent 3px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.1) 3px, transparent 4px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 5px, transparent 6px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08) 2px, transparent 3px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1) 4px, transparent 5px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 80px 80px, 120px 120px;
    pointer-events: none;
}
.service-page .cta-block > *,
.pricing-page .cta-block > * {
    position: relative;
    z-index: 1;
}

/* === 方案卡片加強（pricing 頁專用） === */
.pricing-page .plan-card {
    background: linear-gradient(180deg, #fff 0%, #fafaf7 100%);
    box-shadow: 0 6px 24px rgba(161, 132, 93, 0.08);
    overflow: hidden;
    position: relative;
}
.pricing-page .plan-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--accent, #a1845d) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
    transition: all 0.4s;
}
.pricing-page .plan-card:hover::after {
    opacity: 0.12;
    transform: scale(1.3);
}
.pricing-page .plan-card.featured {
    background: linear-gradient(180deg, #fff 0%, #faf5ed 100%);
    box-shadow: 0 16px 48px rgba(161, 132, 93, 0.18);
    transform: translateY(-8px);
}
.pricing-page .plan-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 56px rgba(161, 132, 93, 0.25);
}
.pricing-page .plan-card .price {
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === 加值服務卡片化 === */
.pricing-page .addon-card {
    background: linear-gradient(135deg, #fff 0%, #fafaf7 100%);
    border: 1px solid #f0e8da;
    border-left: 4px solid var(--accent, #a1845d);
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(161, 132, 93, 0.04);
}
.pricing-page .addon-card:hover {
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 8px 24px rgba(161, 132, 93, 0.15);
}

/* === 付款流程：圓形編號 + 連接線 === */
.pricing-page .pay-flow {
    position: relative;
    padding: 30px 0 20px;
}
.pricing-page .pay-flow::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent, #a1845d) 20%, var(--accent, #a1845d) 80%, transparent 100%);
    opacity: 0.25;
    z-index: 0;
}
.pricing-page .pay-step {
    background: #fff;
    border-top: none;
    border: 1px solid #f0e8da;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(161, 132, 93, 0.06);
    padding: 30px 15px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.pricing-page .pay-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(161, 132, 93, 0.15);
    border-color: var(--accent, #a1845d);
}
.pricing-page .pay-step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    margin: -45px auto 12px;
    box-shadow: 0 6px 16px rgba(161, 132, 93, 0.3);
    border: 4px solid #fafaf7;
}

/* === 對照表立體 === */
.service-page .compare-table,
.pricing-page .compare-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(161, 132, 93, 0.08);
    background: #fff;
}
.service-page .compare-table th,
.pricing-page .compare-table th {
    background: linear-gradient(135deg, var(--accent, #a1845d) 0%, #8a6f4e 100%);
}
.service-page .compare-table tr:nth-child(even) td,
.pricing-page .compare-table tr:nth-child(even) td {
    background: #fafaf7;
}
.service-page .compare-table tr:nth-child(even) td.label,
.pricing-page .compare-table tr:nth-child(even) td.label {
    background: #f5f0e8;
}

/* === Section 之間 alternating 背景帶 === */
.service-page .alt-bg-band,
.pricing-page .alt-bg-band {
    background: linear-gradient(180deg, transparent 0%, #f5f0e8 30%, #f5f0e8 70%, transparent 100%);
    margin: 0 -30px;
    padding: 30px;
    position: relative;
}

/* === 響應式調整 === */
@media (max-width: 768px) {
    .service-page .page-title,
    .pricing-page .page-title {
        padding: 50px 25px 60px;
        margin-bottom: 50px;
    }
    .service-page .why-grid {
        padding: 40px 20px;
    }
    .service-page .process-list::before,
    .pricing-page .pay-flow::before {
        display: none;
    }
    .service-page .process-item .step,
    .pricing-page .pay-step .num {
        width: 48px;
        height: 48px;
        margin-top: -38px;
    }
    .service-page .price-teaser::before {
        font-size: 120px;
    }
}
