/* ========================================
   session-facelift 頁面專屬樣式
   紀謙的自在空間 - Access 能量面提個案
   配色主題：玫瑰金 (Rose Gold)
   
   字體規格繼承自 global-style.css：
   - H1: --text-5xl (3rem = 48px)
   - H2: --text-4xl (2.25rem = 36px)
   - H3: --text-xl ~ --text-2xl (1.25-1.5rem)
   - 內文: --text-base (1rem = 16px)
   - 大內文: --text-lg (1.125rem = 18px)
   - 小字: --text-sm (0.875rem = 14px)
   - 行高: --leading-relaxed (1.8)
   ======================================== */

/* ========== 頁面專屬配色變數 ========== */
:root {
    /* 玫瑰色系 */
    --rose-light: #fdf2f8;
    --rose-soft: #fce7f3;
    --rose-main: #f9a8d4;
    --rose-dark: #ec4899;
    --rose-deep: #be185d;
    
    /* 金色系 */
    --gold-cream: #fef7ed;
    --gold-soft: #fde68a;
    --gold-main: #d4a574;
    --gold-dark: #b08968;
    
    /* 鼠尾草綠 */
    --sage-light: #f0fdf4;
    --sage-soft: #dcfce7;
    --sage-main: #86efac;
    --sage-dark: #22c55e;
    
    /* 薰衣草紫 */
    --lavender-light: #faf5ff;
    --lavender-soft: #f3e8ff;
    --lavender-main: #d8b4fe;
    --lavender-dark: #a855f7;
    
    /* 漸層 */
    --peach-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --rose-gradient: linear-gradient(135deg, #ffecd2 0%, #f9a8d4 50%, #fbc2eb 100%);
    --morning-gradient: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --bloom-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #f9a8d4 100%);
    
    /* 基礎色彩 */
    --white: #ffffff;
    --cream: #fffbf5;
    --text-dark: #3d3d3d;
    --text-warm: #5c4a42;
    --text-soft: #8b7b74;
    --text-light: #a89f9a;
    
    /* 頁面專屬陰影 */
    --shadow-soft: 0 4px 20px rgba(212, 165, 116, 0.15);
    --shadow-rose: 0 10px 40px rgba(249, 168, 212, 0.2);
    --shadow-warm: 0 8px 30px rgba(176, 137, 104, 0.15);
    --shadow-rose-hover: 0 15px 40px rgba(249, 168, 212, 0.35);
}

/* ========== 頁面基礎設定 ========== */
body {
    color: var(--text-warm);
    background: var(--cream);
}

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

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

.container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(180deg, var(--rose-light) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

/* 花瓣裝飾動畫 */
.petal {
    position: absolute;
    border-radius: var(--radius-circle) 0 var(--radius-circle) var(--radius-circle);
    opacity: 0.4;
    animation: float-petal 15s ease-in-out infinite;
}

.petal-1 {
    width: 80px;
    height: 80px;
    background: var(--rose-soft);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.petal-2 {
    width: 60px;
    height: 60px;
    background: var(--lavender-soft);
    top: 30%;
    right: 8%;
    animation-delay: -3s;
}

.petal-3 {
    width: 50px;
    height: 50px;
    background: var(--gold-soft);
    bottom: 25%;
    left: 10%;
    animation-delay: -6s;
}

.petal-4 {
    width: 70px;
    height: 70px;
    background: var(--sage-soft);
    bottom: 15%;
    right: 15%;
    animation-delay: -9s;
}

@keyframes float-petal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(15deg); }
    50% { transform: translate(-10px, 10px) rotate(-10deg); }
    75% { transform: translate(20px, 15px) rotate(20deg); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

/* Hero Badge：使用 --text-sm */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--rose-deep);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-soft);
}

.hero-badge::before {
    content: '🌸';
}

/* Hero H1：使用 --text-5xl */
.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-5);
}

.hero-title .highlight {
    background: var(--bloom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero 副標題：使用 --text-lg */
.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-soft);
    margin-bottom: var(--space-8);
    line-height: var(--leading-loose);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

/* Hero Feature：使用 --text-sm */
.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-warm);
    box-shadow: var(--shadow-soft);
}

.hero-feature span {
    font-size: var(--text-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-2xl) 100px var(--radius-2xl) 100px;
    box-shadow: var(--shadow-warm);
    border: 6px solid var(--white);
}

.hero-image-badge {
    position: absolute;
    bottom: var(--space-8);
    left: calc(-1 * var(--space-5));
    background: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-rose);
    text-align: center;
}

/* Badge Number：使用 --text-4xl */
.hero-image-badge .number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--rose-deep);
    display: block;
}

/* Badge Label：使用 --text-sm */
.hero-image-badge .label {
    font-size: var(--text-sm);
    color: var(--text-soft);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all var(--transition-normal) var(--ease-out);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--bloom-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-warm);
    border: 2px solid var(--gold-main);
}

.btn-secondary:hover {
    background: var(--gold-cream);
}

/* ========== Section 通用樣式 ========== */
section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

/* Section Tag：使用 --text-sm */
.section-tag {
    display: inline-block;
    background: var(--bloom-gradient);
    color: var(--text-dark);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

/* Section H2：使用 --text-4xl */
.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.section-title .accent {
    color: var(--rose-deep);
}

/* Section 副標題：使用 --text-lg */
.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* ========== What Is Section ========== */
.what-is {
    background: var(--white);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.what-is-image {
    position: relative;
}

.what-is-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-warm);
}

.what-is-image::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--space-5));
    left: calc(-1 * var(--space-5));
    right: var(--space-5);
    bottom: var(--space-5);
    border: 3px solid var(--rose-main);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

/* What Is H2：使用 --text-4xl */
.what-is-text h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
}

/* What Is 內文：使用 --text-base */
.what-is-text p {
    color: var(--text-warm);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.what-is-highlight {
    background: var(--rose-light);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--rose-main);
    margin-top: var(--space-8);
}

.what-is-highlight p {
    margin: 0;
    color: var(--rose-deep);
    font-weight: var(--font-medium);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ========== Benefits Section ========== */
.benefits {
    background: linear-gradient(180deg, var(--cream) 0%, var(--rose-light) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-normal) var(--ease-out);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bloom-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal) var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-rose);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--rose-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: var(--text-3xl);
}

/* Benefit Card H3：使用 --text-lg */
.benefit-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

/* Benefit Card 內文：使用 --text-sm */
.benefit-card p {
    font-size: var(--text-sm);
    color: var(--text-soft);
    line-height: var(--leading-normal);
}

/* ========== Comparison Section ========== */
.comparison {
    background: var(--white);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    position: relative;
}

.comparison-card.medical {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
}

.comparison-card.energy {
    background: var(--rose-light);
    border: 2px solid var(--rose-main);
}

/* Comparison H3：使用 --text-xl */
.comparison-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.comparison-card h3 span {
    font-size: var(--text-3xl);
}

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

/* Comparison List：使用 --text-sm */
.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li::before {
    content: '×';
    color: #999;
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    flex-shrink: 0;
}

.comparison-card.energy .comparison-list li::before {
    content: '✓';
    color: var(--rose-deep);
}

/* ========== Process Section ========== */
.process {
    background: linear-gradient(180deg, var(--lavender-light) 0%, var(--rose-light) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: calc(-1 * var(--space-5));
    width: var(--space-10);
    height: 2px;
    background: var(--rose-main);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    box-shadow: var(--shadow-rose);
    border: 3px solid var(--rose-soft);
}

/* Process H3：使用 --text-xl */
.process-step h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

/* Process 內文：使用 --text-sm */
.process-step p {
    color: var(--text-soft);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

/* Step Time：使用 --text-sm */
.step-time {
    display: inline-block;
    background: var(--bloom-gradient);
    color: var(--text-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-top: var(--space-3);
}

/* ========== Result Section ========== */
.result {
    background: var(--white);
}

.result-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.result-image {
    position: relative;
}

.result-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-warm);
}

/* Result Badge：使用 --text-sm */
.result-badge {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    background: var(--bloom-gradient);
    color: var(--text-dark);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    box-shadow: var(--shadow-soft);
}

/* Result H3：使用 --text-3xl */
.result-content h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-5);
    line-height: var(--leading-tight);
}

/* Result 內文：使用 --text-base */
.result-content p {
    color: var(--text-warm);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.result-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

/* Result Item：使用 --text-sm */
.result-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--rose-light);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--text-warm);
}

.result-item::before {
    content: '✨';
}

/* ========== Testimonials Section ========== */
.testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, var(--gold-cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all var(--transition-normal) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rose);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-5);
    left: var(--space-6);
    font-size: var(--text-6xl);
    color: var(--rose-soft);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Testimonial 內文：使用 --text-sm */
.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--text-warm);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
    padding-top: var(--space-5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bloom-gradient);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

/* Author Name：使用 --text-sm + semibold */
.author-info h4 {
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    font-size: var(--text-sm);
}

/* Author Note：使用 --text-xs */
.author-info p {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin: 0;
}

/* ========== Pricing Section ========== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--cream);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal) var(--ease-out);
    border: 2px solid transparent;
}

.pricing-card.featured {
    background: var(--rose-light);
    border-color: var(--rose-main);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '💝 最受歡迎';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bloom-gradient);
    color: var(--text-dark);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    white-space: nowrap;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-rose);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-emoji {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

/* Pricing Title：使用 --text-xl */
.pricing-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

/* Pricing Price：使用 --text-5xl */
.pricing-price {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--rose-deep);
    margin: var(--space-5) 0;
}

.pricing-price span {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--text-soft);
}

.pricing-features {
    list-style: none;
    margin: var(--space-6) 0;
    text-align: left;
    padding: 0;
}

/* Pricing Features：使用 --text-sm */
.pricing-features li {
    padding: var(--space-3) 0;
    color: var(--text-warm);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.pricing-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--sage-soft);
    color: var(--sage-dark);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    flex-shrink: 0;
}

/* Pricing Note：使用 --text-xs */
.pricing-note {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: var(--space-4);
}

/* ========== FAQ Section ========== */
.faq {
    background: linear-gradient(180deg, var(--lavender-light) 0%, var(--cream) 100%);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: border-color var(--transition-normal) var(--ease-out);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--rose-main);
}

/* FAQ Question：使用 --text-base + semibold */
.faq-question {
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    color: var(--text-dark);
    transition: background var(--transition-normal) var(--ease-out);
}

.faq-question:hover {
    background: var(--rose-light);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--rose-deep);
    transition: transform var(--transition-normal) var(--ease-out);
    font-weight: var(--font-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* FAQ Answer：使用 --text-base */
.faq-answer-content {
    padding: 0 var(--space-8) var(--space-6);
    color: var(--text-warm);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

/* ========== Contact Section ========== */
.contact {
    padding: var(--space-24) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* Contact H2：使用 --text-4xl */
.contact-text h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-5);
    line-height: var(--leading-tight);
}

/* Contact 內文：使用 --text-base */
.contact-text p {
    color: var(--text-warm);
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-5);
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-soft);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-circle);
    background: var(--rose-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--rose-deep);
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

/* Contact Label：使用 --text-xs */
.contact-label {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-bottom: var(--space-1);
}

/* Contact Value：使用 --text-base + medium */
.contact-detail a,
.contact-detail span {
    font-size: var(--text-base);
    color: var(--text-dark);
    font-weight: var(--font-medium);
}

.contact-detail a:hover {
    color: var(--rose-deep);
}

/* ========== CTA Section ========== */
.cta {
    background: var(--bloom-gradient);
    padding: var(--space-20) 0;
    text-align: center;
}

/* CTA H2：使用 --text-4xl */
.cta h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

/* CTA 內文：使用 --text-lg */
.cta p {
    font-size: var(--text-lg);
    color: var(--text-warm);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-secondary {
    border-color: var(--text-dark);
}

/* ========== 響應式設計 ========== */
@media (max-width: 1024px) {
    .hero-inner,
    .what-is-content,
    .result-showcase,
    .comparison-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .process-step::after {
        display: none;
    }

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    /* RWD Hero H1 */
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    /* RWD Section H2 */
    .section-title {
        font-size: var(--text-3xl);
    }

    section {
        padding: var(--space-16) 0;
    }

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

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

    .hero-features {
        justify-content: center;
    }

    .cta h2 {
        font-size: var(--text-3xl);
    }

    .what-is-text h2,
    .contact-text h2 {
        font-size: var(--text-3xl);
    }

    .result-content h3 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-image-badge {
        left: var(--space-4);
        bottom: var(--space-4);
        padding: var(--space-3) var(--space-4);
    }

    .hero-image-badge .number {
        font-size: var(--text-3xl);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .step-number {
        width: 80px;
        height: 80px;
        font-size: var(--text-3xl);
    }
}
