/* ========================================
   session-esse 頁面專屬樣式
   紀謙的自在空間 - ESSE 能量個案
   配色主題：療癒森林綠 (Healing Forest Green)
   
   字體規格繼承自 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 {
    /* 療癒森林綠色系 - 代表身體放鬆與自然療癒 */
    --forest-light: #ecfdf5;
    --forest-soft: #d1fae5;
    --forest-main: #34d399;
    --forest-dark: #10b981;
    --forest-deep: #047857;
    
    /* 鼠尾草綠 */
    --sage-light: #f0fdf4;
    --sage-soft: #dcfce7;
    --sage-main: #86efac;
    --sage-dark: #22c55e;
    
    /* 大地色 */
    --earth-light: #fefce8;
    --earth-soft: #fef9c3;
    --earth-main: #fde047;
    --earth-dark: #eab308;
    
    /* 石色 */
    --stone-light: #f5f5f4;
    --stone-soft: #e7e5e4;
    --stone-main: #a8a29e;
    --stone-dark: #78716c;
    
    /* 漸層 */
    --healing-gradient: linear-gradient(135deg, #34d399 0%, #047857 100%);
    --nature-gradient: linear-gradient(135deg, #86efac 0%, #34d399 50%, #047857 100%);
    --earth-gradient: linear-gradient(135deg, #fde047 0%, #34d399 100%);
    --calm-gradient: linear-gradient(180deg, #ecfdf5 0%, #f5f5f4 100%);
    
    /* 基礎色彩 */
    --white: #ffffff;
    --cream: #fafdfb;
    --text-dark: #1c1917;
    --text-warm: #292524;
    --text-soft: #57534e;
    --text-light: #a8a29e;
    
    /* 頁面專屬陰影 */
    --shadow-soft: 0 4px 20px rgba(4, 120, 87, 0.1);
    --shadow-green: 0 10px 40px rgba(16, 185, 129, 0.2);
    --shadow-warm: 0 8px 30px rgba(120, 113, 108, 0.15);
    --shadow-green-hover: 0 15px 40px rgba(16, 185, 129, 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(--forest-light) 0%, var(--sage-light) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

/* 葉子裝飾動畫 */
.leaf {
    position: absolute;
    border-radius: 0 70% 0 70%;
    opacity: 0.3;
    animation: float-leaf 20s ease-in-out infinite;
}

.leaf-1 {
    width: 60px;
    height: 80px;
    background: var(--forest-soft);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-30deg);
}

.leaf-2 {
    width: 50px;
    height: 70px;
    background: var(--sage-soft);
    top: 30%;
    right: 10%;
    animation-delay: -4s;
    transform: rotate(20deg);
}

.leaf-3 {
    width: 40px;
    height: 55px;
    background: var(--forest-soft);
    bottom: 30%;
    left: 8%;
    animation-delay: -8s;
    transform: rotate(-15deg);
}

.leaf-4 {
    width: 55px;
    height: 75px;
    background: var(--sage-soft);
    bottom: 20%;
    right: 15%;
    animation-delay: -12s;
    transform: rotate(35deg);
}

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

.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(--forest-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(--healing-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-6);
    line-height: var(--leading-loose);
}

/* Hero Pain Points */
.hero-pain-points {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-soft);
}

.hero-pain-points h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--forest-deep);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.pain-tag {
    background: var(--forest-light);
    color: var(--forest-deep);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    border: 1px solid var(--forest-soft);
}

/* Hero Promise */
.hero-promise {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(4, 120, 87, 0.1) 100%);
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--forest-main);
    margin-bottom: var(--space-8);
}

.hero-promise p {
    font-size: var(--text-lg);
    color: var(--forest-deep);
    font-weight: var(--font-medium);
    margin: 0;
    line-height: var(--leading-relaxed);
}

.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);
    box-shadow: var(--shadow-green);
    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-green);
    text-align: center;
}

/* Badge Number：使用 --text-3xl */
.hero-image-badge .number {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--forest-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(--healing-gradient);
    color: white;
    box-shadow: var(--shadow-green);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--forest-deep);
    border: 2px solid var(--forest-main);
}

.btn-secondary:hover {
    background: var(--forest-light);
}

/* ========== 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(--healing-gradient);
    color: white;
    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(--forest-deep);
}

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

/* ========== Understanding Section ========== */
.understanding {
    background: var(--white);
}

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

.understanding-image {
    position: relative;
}

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

.understanding-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(--forest-main);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

/* Understanding H2：使用 --text-4xl */
.understanding-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);
}

/* Understanding 內文：使用 --text-base */
.understanding-text p {
    color: var(--text-soft);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.understanding-text strong {
    color: var(--forest-deep);
}

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

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

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

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

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

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

/* Symptom Card H3：使用 --text-lg */
.symptom-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

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

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

.symptom-card p strong {
    color: var(--text-dark);
}

.symptom-card.body {
    border-top: 4px solid var(--forest-main);
}

.symptom-card.life {
    border-top: 4px solid var(--earth-dark);
}

/* ========== How ESSE Works Section ========== */
.how-esse {
    background: var(--white);
}

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

/* How ESSE H2：使用 --text-4xl */
.how-esse-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);
}

/* How ESSE 內文：使用 --text-base */
.how-esse-text p {
    color: var(--text-soft);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.molecule-visual {
    background: var(--forest-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--space-8) 0;
}

.molecule-visual .before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

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

.molecule-state .icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.molecule-state .label {
    font-size: var(--text-sm);
    color: var(--text-soft);
}

.molecule-arrow {
    font-size: var(--text-4xl);
    color: var(--forest-main);
}

.penetration-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.penetration-item {
    background: var(--forest-light);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--forest-deep);
    font-weight: var(--font-medium);
}

.how-esse-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-green);
}

/* ========== Results Section ========== */
.results {
    background: linear-gradient(180deg, var(--forest-light) 0%, var(--sage-light) 100%);
}

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

.result-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;
}

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

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

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

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

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

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

/* ========== Testimonials Section ========== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    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-green);
}

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

/* Testimonial 內文：使用 --text-sm */
.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--text-soft);
    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(--healing-gradient);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: white;
}

/* 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;
}

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

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

/* Training H2：使用 --text-4xl */
.training-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);
}

/* Training 內文：使用 --text-base */
.training-text p {
    color: var(--text-soft);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.training-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.training-highlight {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Training Highlight H4：使用 --text-base */
.training-highlight h4 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--forest-deep);
    margin-bottom: var(--space-2);
}

/* Training Highlight 內文：使用 --text-sm */
.training-highlight p {
    font-size: var(--text-sm);
    color: var(--text-soft);
    margin: 0;
}

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

.training-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    height: 200px;
    object-fit: cover;
    width: 100%;
}

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

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--forest-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-10);
    text-align: center;
    box-shadow: var(--shadow-green);
    border: 2px solid var(--forest-main);
    position: relative;
}

/* Pricing Badge：使用 --text-sm */
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--healing-gradient);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    white-space: nowrap;
}

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

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

/* Pricing Desc：使用 --text-base */
.pricing-desc {
    font-size: var(--text-base);
    color: var(--text-soft);
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
}

/* Pricing Price：使用 --text-5xl */
.pricing-price {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--forest-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-8) 0;
    text-align: left;
    padding: 0;
}

/* Pricing Features：使用 --text-base */
.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(4, 120, 87, 0.1);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--forest-soft);
    color: var(--forest-deep);
    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-sm */
.pricing-note {
    background: var(--white);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    color: var(--forest-deep);
    line-height: var(--leading-relaxed);
}

/* ========== FAQ Section ========== */
.faq {
    background: linear-gradient(180deg, var(--forest-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(--forest-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(--forest-light);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--forest-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-soft);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

/* ========== Contact Section ========== */
.contact {
    background: var(--white);
    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-soft);
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
}

.contact-question {
    background: var(--forest-light);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin: var(--space-8) 0;
}

/* Contact Question：使用 --text-lg */
.contact-question p {
    font-size: var(--text-lg);
    color: var(--forest-deep);
    font-weight: var(--font-medium);
    margin: 0;
    text-align: center;
    line-height: var(--leading-relaxed);
}

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

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

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

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--forest-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(--forest-deep);
}

/* ========== CTA Section ========== */
.cta {
    background: var(--healing-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: white;
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

/* CTA 內文：使用 --text-lg */
.cta p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    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(--forest-deep);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
    background: transparent;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

    .training-images {
        grid-template-columns: repeat(4, 1fr);
    }

    .training-images img {
        height: 150px;
    }
}

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

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

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

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

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

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

    .training-highlights {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .understanding-text h2,
    .how-esse-text h2,
    .training-text h2,
    .contact-text h2 {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-5);
    }

    .pricing-card {
        padding: var(--space-10) var(--space-6);
    }

    .training-images {
        grid-template-columns: 1fr;
    }

    .training-images img {
        height: 200px;
    }

    .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-2xl);
    }

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

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