/* ========================================
   WOMM SERVICE - 口碑行銷服務樣式
   第一段落：Hero Banner
   ======================================== */

/* 主容器 */
.rise-theme-womm-page {
    overflow-x: hidden;
}

/* WOMM 頁面專屬樣式 - 移除 body padding */
body.page-template-page-womm,
body[class*="womm"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-template-page-womm main,
body[class*="womm"] main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 透明 Header 樣式已移至 header-footer-styles.css */

/* Hero Section */
.rise-theme-womm-hero {
    position: relative;
    padding: 100px 0; /* 上下都設為 100px */
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), 
        url('/wp-content/uploads/2025/10/paper-texture.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    overflow: hidden;
}

/* 波浪線條裝飾 */
.rise-theme-womm-wave-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.rise-theme-womm-wave {
    width: 100%;
    height: 400px;
    display: block;
}

.rise-theme-womm-hero-container {
    max-width: 1280px; /* 從 1400px 改為 1280px */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center; /* 從 space-between 改為 center */
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* 左欄 */
.rise-theme-womm-hero-left {
    flex: 1;
    max-width: 600px;
    position: relative;
}

/* Blob 動畫 */
.rise-theme-blob-wrapper {
    position: absolute;
    top: -100px;
    left: -50px;
    z-index: 0;
    opacity: 0.4;
}

.rise-theme-blob-svg {
    width: 250px;
    height: 250px;
}

.rise-theme-blob-svg path {
    fill: rgba(255, 211, 145, 0.3);
}

/* 內容區 */
.rise-theme-womm-hero-content {
    position: relative;
    z-index: 1;
}

/* 徽章標籤 */
.rise-theme-womm-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3f776f 0%, #2d5a5a 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(63, 119, 111, 0.2);
}

/* 標題 */
.rise-theme-womm-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3f776f;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* 價值標註 */
.rise-theme-womm-hero-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFC269; /* 改為橘黃色 */
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 添加陰影增加可讀性 */
}

/* 描述文字 */
.rise-theme-womm-hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* LINE 按鈕 */
.rise-theme-womm-line-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #02C300;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(2, 195, 0, 0.3);
}

.rise-theme-womm-line-button:hover {
    background-color: #02b000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(2, 195, 0, 0.4);
    color: #ffffff;
}

.rise-theme-womm-line-icon {
    width: 28px;
    height: 28px;
}

/* 右欄 */
.rise-theme-womm-hero-right {
    flex: 0 0 420px;
    max-width: 420px;
}

.rise-theme-womm-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* 表單徽章 SVG */
.rise-theme-womm-form-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
}

.rise-theme-womm-badge-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

/* WPForms 按鈕樣式優化 */
.rise-theme-womm-form-wrapper .wpforms-submit,
.rise-theme-womm-form-wrapper button[type="submit"] {
    width: 100% !important;
    background-color: #3f776f !important;
    color: #ffffff !important;
    padding: 0 2rem !important; /* 上下改為 0px */
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 1rem !important;
    min-height: 50px !important; /* 確保按鈕有基本高度 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.rise-theme-womm-form-wrapper .wpforms-submit:hover,
.rise-theme-womm-form-wrapper button[type="submit"]:hover {
    background-color: #2d5a5a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(63, 119, 111, 0.3) !important;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .rise-theme-womm-hero-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .rise-theme-womm-hero-left,
    .rise-theme-womm-hero-right {
        max-width: 100%;
        flex: none;
    }
    
    .rise-theme-womm-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .rise-theme-womm-hero {
        padding: 80px 0 60px;
    }
    
    .rise-theme-womm-hero-container {
        padding: 0 1rem;
    }
    
    .rise-theme-womm-hero-title {
        font-size: 2rem;
    }
    
    .rise-theme-womm-hero-value {
        font-size: 1.4rem;
    }
    
    .rise-theme-blob-wrapper {
        display: none;
    }
}


/* ========================================
   第二段落：困擾卡片堆疊區塊
   ======================================== */

.rise-theme-womm-problems {
    position: relative;
    padding: 0; /* 移除 padding，讓卡片從頂部開始 */
    background: #ffffff;
}

.rise-theme-womm-problems-container {
    max-width: 100%; /* 改為滿版 */
    margin: 0;
    padding: 0;
}

/* 標題 */
.rise-theme-womm-problems-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f776f;
    text-align: center;
    padding: 80px 2rem 60px; /* 改用 padding 而非 margin */
    background: #ffffff;
    position: relative;
    z-index: 10;
}

/* 卡片堆疊容器 */
.rise-theme-womm-cards-wrapper {
    position: relative;
    height: 100vh; /* 只需要一個螢幕高度，pin 會創建滾動空間 */
}

/* 單張卡片 */
.rise-theme-womm-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: auto;
    min-height: 85vh;
    margin: 5vh 0;
    padding: 4rem 6rem;
    border-radius: 30px;
    overflow: visible;
    /* 優化陰影效能 - 使用較輕的陰影 */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* GPU 加速 */
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 卡片標題（置中，在上方） */
.rise-theme-womm-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* 卡片內容容器（左圖右文） */
.rise-theme-womm-card-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* 左側圖片區（50%） */
.rise-theme-womm-card-left {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.rise-theme-womm-card-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    /* 優化陰影 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* GPU 加速 */
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.3s ease;
}

.rise-theme-womm-card-image:hover {
    transform: translateZ(0) scale(1.02);
}

/* 右側文字區（50%） */
.rise-theme-womm-card-right {
    flex: 0 0 50%;
    padding: 2rem;
}

/* 卡片文字 */
.rise-theme-womm-card-text {
    font-size: 1.2rem;
    line-height: 1.9;
}

/* 卡片 1 - 橘黃色 */
.rise-theme-womm-card[data-card="1"] {
    background: linear-gradient(135deg, #FFC169 0%, #FFD391 100%);
    z-index: 1;
}

.rise-theme-womm-card[data-card="1"] .rise-theme-womm-card-title,
.rise-theme-womm-card[data-card="1"] .rise-theme-womm-card-text {
    color: #333333;
}

/* 卡片 2 - 米黃色 */
.rise-theme-womm-card[data-card="2"] {
    background: linear-gradient(135deg, #E2E1BD 0%, #F0EFD8 100%);
    z-index: 2;
}

.rise-theme-womm-card[data-card="2"] .rise-theme-womm-card-title,
.rise-theme-womm-card[data-card="2"] .rise-theme-womm-card-text {
    color: #333333;
}

/* 卡片 3 - 深綠色 */
.rise-theme-womm-card[data-card="3"] {
    background: linear-gradient(135deg, #3F776F 0%, #2D5A5A 100%);
    z-index: 3;
}

.rise-theme-womm-card[data-card="3"] .rise-theme-womm-card-title,
.rise-theme-womm-card[data-card="3"] .rise-theme-womm-card-text {
    color: #ffffff;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .rise-theme-womm-card-content {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .rise-theme-womm-card-left,
    .rise-theme-womm-card-right {
        flex: none;
        width: 100%;
    }
    
    .rise-theme-womm-card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* 手機版：取消 sticky 效果，正常堆疊 */
    .rise-theme-womm-cards-wrapper {
        height: auto;
    }
    
    .rise-theme-womm-problems {
        padding: 60px 0;
    }
    
    .rise-theme-womm-problems-container {
        padding: 0 1rem;
    }
    
    .rise-theme-womm-card {
        position: relative;
        top: auto;
        height: auto;
        min-height: auto;
        margin-bottom: 2rem;
        padding: 0;
        overflow: hidden;
    }
    
    .rise-theme-womm-card-content {
        padding: 0;
        gap: 0;
        width: 100%;
    }
    
    .rise-theme-womm-card-left,
    .rise-theme-womm-card-right {
        width: 100%;
        padding: 0;
    }
    
    .rise-theme-womm-card-left {
        display: flex;
        justify-content: center;
        padding: 2rem 1rem 1.5rem;
    }
    
    .rise-theme-womm-card-right {
        padding: 0 1.5rem 2rem;
    }
    
    .rise-theme-womm-card-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .rise-theme-womm-problems-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .rise-theme-womm-card-title {
        font-size: 1.5rem;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .rise-theme-womm-card-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}


/* ========================================
   第三段落：消費者信任數據洞察
   ======================================== */

.rise-theme-womm-trust {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}

.rise-theme-womm-trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

/* 左欄 - 文字內容 */
.rise-theme-womm-trust-left {
    flex: 1;
    padding-right: 2rem;
}

/* 標題上方標籤 */
.rise-theme-womm-trust-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #3f776f;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 主標題 */
.rise-theme-womm-trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f776f;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* 副標題 */
.rise-theme-womm-trust-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #3f776f;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* 數據項目列表 */
.rise-theme-womm-trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-left: 3.5rem;
}

/* 單個數據項目 */
.rise-theme-womm-trust-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* 百分比數字 */
.rise-theme-womm-trust-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #3f776f;
    line-height: 1;
    flex-shrink: 0;
}

.rise-theme-womm-trust-percent {
    font-size: 3rem;
    font-weight: 700;
}

/* 數據內容 */
.rise-theme-womm-trust-stat-content {
    flex: 1;
    padding-top: 0.5rem;
}

/* 數據標題 */
.rise-theme-womm-trust-stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3f776f;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* 英文標題 */
.rise-theme-womm-trust-stat-english {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3f776f;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* 數據描述 */
.rise-theme-womm-trust-stat-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 右欄 - 圖片內容 */
.rise-theme-womm-trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 圖片容器 */
.rise-theme-womm-trust-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

/* 圖片通用樣式 */
.rise-theme-womm-trust-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* GPU加速優化 */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.rise-theme-womm-trust-image:hover {
    transform: translateZ(0) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* 上方圖片（1:1比例，略偏左） */
.rise-theme-womm-trust-image-top {
    max-width: 70%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    align-self: flex-start;
    margin-left: 10%;
}

/* 下方圖片（略窄，略偏右） */
.rise-theme-womm-trust-image-bottom {
    max-width: 60%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    align-self: flex-end;
    margin-right: 10%;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .rise-theme-womm-trust-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .rise-theme-womm-trust-left {
        padding-right: 0;
    }
    
    .rise-theme-womm-trust-title {
        font-size: 2rem;
    }
    
    .rise-theme-womm-trust-stat-number {
        font-size: 3rem;
    }
    
    .rise-theme-womm-trust-percent {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .rise-theme-womm-trust {
        padding: 80px 0;
    }
    
    .rise-theme-womm-trust-container {
        padding: 0 1rem;
        gap: 3rem;
    }
    
    /* 手機版標題和badge置中 */
    .rise-theme-womm-trust-badge {
        display: block;
        text-align: center;
    }
    
    .rise-theme-womm-trust-title,
    .rise-theme-womm-trust-subtitle {
        text-align: center;
    }
    
    .rise-theme-womm-trust-title {
        font-size: 1.8rem;
    }
    
    .rise-theme-womm-trust-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .rise-theme-womm-trust-stats {
        gap: 2rem;
        margin-left: 0;
    }
    
    .rise-theme-womm-trust-stat-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rise-theme-womm-trust-stat-number {
        font-size: 2.5rem;
    }
    
    .rise-theme-womm-trust-percent {
        font-size: 2rem;
    }
    
    .rise-theme-womm-trust-stat-title {
        font-size: 1.1rem;
    }
    
    .rise-theme-womm-trust-stat-desc {
        font-size: 0.95rem;
    }
    
    .rise-theme-womm-trust-image-top,
    .rise-theme-womm-trust-image-bottom {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }
    
    .rise-theme-womm-trust-image-bottom {
        max-width: 90%;
    }
}


/* ========================================
   第四段落：洞察分析卡片
   ======================================== */

.rise-theme-womm-insights {
    position: relative;
    padding: 120px 0;
    background: #f8f9fa;
}

.rise-theme-womm-insights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 卡片容器 */
.rise-theme-womm-insights-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* 單張卡片 */
.rise-theme-womm-insight-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rise-theme-womm-insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 卡片背景色 */
.rise-theme-womm-insight-card:nth-child(1) {
    background: #FFC269;
}

.rise-theme-womm-insight-card:nth-child(2) {
    background: #E3E2BE;
}

.rise-theme-womm-insight-card:nth-child(3) {
    background: #3F776F;
}

/* 第三張卡片文字改為白色 */
.rise-theme-womm-insight-card:nth-child(3) .rise-theme-womm-insight-title {
    color: #ffffff;
}

.rise-theme-womm-insight-card:nth-child(3) .rise-theme-womm-insight-text {
    color: #f0f0f0;
}

/* 卡片圖片區 */
.rise-theme-womm-insight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.rise-theme-womm-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rise-theme-womm-insight-card:hover .rise-theme-womm-insight-image img {
    transform: scale(1.05);
}

/* 卡片內容區 */
.rise-theme-womm-insight-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 卡片標題 */
.rise-theme-womm-insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3f776f;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* 卡片文字 */
.rise-theme-womm-insight-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .rise-theme-womm-insights-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .rise-theme-womm-insight-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .rise-theme-womm-insights {
        padding: 80px 0;
    }
    
    .rise-theme-womm-insights-container {
        padding: 0 1rem;
    }
    
    .rise-theme-womm-insights-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rise-theme-womm-insight-image {
        height: 220px;
    }
    
    .rise-theme-womm-insight-content {
        padding: 2rem 1.5rem;
    }
    
    .rise-theme-womm-insight-title {
        font-size: 1.2rem;
    }
    
    .rise-theme-womm-insight-text {
        font-size: 0.95rem;
    }
}


/* ========================================
   SECTION 5: REPORT ANALYSIS
   ======================================== */

/* 報告區域容器 */
.rise-theme-womm-report {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    padding: 12rem 0 8rem 0;
    overflow: hidden;
}

.rise-theme-womm-report-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* 主標題區域 */
.rise-theme-womm-report-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 20;
}

.rise-theme-womm-report-title {
    font-size: 3rem;
    font-weight: 600;
    color: #3f776f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.rise-theme-womm-report-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #3f776f;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.9;
    font-family: "Playfair Display", serif;
}

/* 分析項目列表 */
.rise-theme-womm-report-list {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 15;
}

/* 單個分析項目 */
.rise-theme-womm-report-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* 文字內容區 */
.rise-theme-womm-report-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rise-theme-womm-report-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3f776f;
    margin-bottom: 0.5rem;
    line-height: 0;
}

.rise-theme-womm-report-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3f776f;
    line-height: 0;
}

.rise-theme-womm-report-item-desc {
    font-size: 1rem;
    color: rgba(63, 119, 111, 0.8);
    line-height: 1.8;
}

/* 動畫容器 */
.rise-theme-womm-report-animation {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    max-height: 320px;
    min-height: 320px;
}

.rise-theme-womm-report-animation > div {
    width: 100%;
    height: 100%;
}

/* 裝飾形狀 - 滾動時放大填滿背景 */
.rise-theme-womm-report-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    z-index: 1;
    pointer-events: none;
}

.rise-theme-womm-shape-scale {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rise-theme-womm-shape-rotate {
    width: 100%;
    height: 100%;
    transform: scale(1) rotate(0deg);
    transition: transform 0.1s linear;
    will-change: transform;
}

.rise-theme-womm-shape-rotate svg {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    opacity: 0.3;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .rise-theme-womm-report {
        padding: 8rem 0 6rem 0;
    }
    
    .rise-theme-womm-report-title {
        font-size: 2.5rem;
    }
    
    .rise-theme-womm-report-subtitle {
        font-size: 1rem;
    }
    
    .rise-theme-womm-report-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rise-theme-womm-report-text,
    .rise-theme-womm-report-animation {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .rise-theme-womm-report {
        padding: 6rem 0 4rem 0;
    }
    
    .rise-theme-womm-report-container {
        padding: 0 1rem;
    }
    
    .rise-theme-womm-report-header {
        margin-bottom: 3rem;
    }
    
    .rise-theme-womm-report-title {
        font-size: 2rem;
    }
    
    .rise-theme-womm-report-subtitle {
        font-size: 0.95rem;
    }
    
    .rise-theme-womm-report-list {
        gap: 2.5rem;
    }
    
    .rise-theme-womm-report-number {
        font-size: 2rem;
    }
    
    .rise-theme-womm-report-item-title {
        font-size: 1.125rem;
    }
    
    .rise-theme-womm-report-item-desc {
        font-size: 0.95rem;
    }
    
    .rise-theme-womm-report-animation {
        max-height: 250px;
        min-height: 250px;
    }
    
    .rise-theme-womm-report-shape {
        margin-top: 4rem;
    }
}


/* ========================================
   SECTION 6: WOMM PROCESS SECTION OVERRIDE
   口碑行銷流程段落覆蓋樣式
======================================== */

/* 桌面版：調整滾動高度為4張卡片 - 使用超高權重選擇器 */
@media (min-width: 769px) {
    /* 重要：覆蓋預設的600vh高度 */
    main#rise-theme-womm-page section.rise-theme-service-process-section.rise-theme-womm-process-section {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    /* 確保容器 sticky 定位正常運作 */
    main#rise-theme-womm-page section.rise-theme-womm-process-section .rise-theme-process-container {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        overflow: hidden !important;
    }
}

/* 手機版流程卡片樣式調整 */
@media (max-width: 768px) {
    .rise-theme-womm-process-section .rise-theme-process-card {
        margin-bottom: 2rem;
    }
}

/* ========================================
   NO-JS FALLBACK - SSR支援
   確保在禁用JavaScript時卡片仍可見
======================================== */

/* 預設狀態：卡片可見且正常堆疊（SSR） */
.rise-theme-process-card {
    position: relative;
    opacity: 1;
    left: auto;
}

/* 當JavaScript載入後，JS會添加 .js-loaded class 到 body */
body.js-loaded .rise-theme-process-card {
    /* 恢復JS控制的樣式 */
    position: absolute;
    opacity: 0;
    left: 100%;
}

/* 手機版：無論是否有JS都使用正常堆疊 */
@media (max-width: 768px) {
    .rise-theme-process-card,
    body.js-loaded .rise-theme-process-card {
        position: relative !important;
        opacity: 1 !important;
        left: auto !important;
        transform: none !important;
    }
}


/* ========================================
   SECTION 7: CTA SECTION
   行動呼籲段落
======================================== */

.rise-theme-womm-cta-section {
    width: 100%;
    padding: 120px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rise-theme-womm-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Title & Subtitle */
.rise-theme-womm-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rise-theme-womm-cta-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3F776F;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* CTA Buttons */
.rise-theme-womm-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rise-theme-womm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 220px;
}

/* Primary Button */
.rise-theme-womm-cta-btn-primary {
    background: linear-gradient(135deg, #3F776F 0%, #2c5a54 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(63, 119, 111, 0.3);
}

.rise-theme-womm-cta-btn-primary:hover {
    background: linear-gradient(135deg, #2c5a54 0%, #1e4339 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 119, 111, 0.4);
}

.rise-theme-womm-cta-btn-primary:active {
    transform: translateY(-1px);
}

/* LINE Button */
.rise-theme-womm-cta-btn-line {
    background: linear-gradient(135deg, #06C755 0%, #05a847 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.rise-theme-womm-cta-btn-line:hover {
    background: linear-gradient(135deg, #05a847 0%, #048a3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.rise-theme-womm-cta-btn-line:active {
    transform: translateY(-1px);
}

.rise-theme-womm-cta-line-icon {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .rise-theme-womm-cta-section {
        padding: 80px 20px;
    }
    
    .rise-theme-womm-cta-title {
        font-size: 2rem;
    }
    
    .rise-theme-womm-cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .rise-theme-womm-cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .rise-theme-womm-cta-btn {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* 年輪背景裝飾 */
.rise-theme-womm-cta-blob-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Blob 2 - 最小 */
.rise-theme-womm-cta-svg-blob-2 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    opacity: 0.3;
}

/* Blob 3 */
.rise-theme-womm-cta-svg-blob-3 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    opacity: 0.3;
}

/* Blob 4 */
.rise-theme-womm-cta-svg-blob-4 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1350px;
    height: 1350px;
    opacity: 0.3;
}

/* Blob 5 */
.rise-theme-womm-cta-svg-blob-5 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1700px;
    height: 1700px;
    opacity: 0.3;
}

/* Blob 6 - 最大 */
.rise-theme-womm-cta-svg-blob-6 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2050px;
    height: 2050px;
    opacity: 0.3;
}

.rise-theme-womm-cta-svg-blob svg {
    width: 100%;
    height: 100%;
}

.rise-theme-womm-cta-svg-blob path {
    fill: none;
    stroke: #E8E8E8;
    stroke-width: 2px;
}
