/* ========================================
   session-bars 頁面專屬樣式
   紀謙的自在空間 - Access Bars® 個案服務
   配色主題：紫金 (Purple-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)
   - 行高: --leading-relaxed (1.8)
   ======================================== */

/* ========== 頁面專屬配色變數 ========== */
:root {
    /* 紫色系 */
    --purple-dark: #4a1c6b;
    --purple-main: #6b2d9b;
    --purple-light: #9b59b6;
    --purple-pale: #f3e5f9;
    
    /* 金色系 */
    --gold-dark: #b8860b;
    --gold-main: #d4af37;
    --gold-light: #f4d03f;
    --gold-soft: #fef3c7;
    
    /* 背景與文字 */
    --bg-light: #faf8fc;
    --text-dark: #2d1b3d;
    --text-gray: #5c4a6e;
    --text-light: #8b7a9e;
    --white: #ffffff;
    --border-light: rgba(74, 28, 107, 0.12);
    
    /* 漸層 */
    --gradient-purple: linear-gradient(135deg, #6b2d9b 0%, #9b59b6 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-hero: linear-gradient(135deg, #4a1c6b 0%, #6b2d9b 50%, #2d1b3d 100%);
    
    /* 頁面專屬陰影 */
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(74, 28, 107, 0.1);
    --shadow-purple-sm: 0 1px 3px rgba(74, 28, 107, 0.1);
    --shadow-purple-md: 0 4px 12px rgba(74, 28, 107, 0.15);
    --shadow-purple-lg: 0 10px 30px rgba(74, 28, 107, 0.2);
}

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

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-5);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: 5%;
    right: -15%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: var(--space-10) var(--space-5);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero H1：使用 --text-5xl (3rem = 48px) */
.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-5);
    letter-spacing: 2px;
    line-height: var(--leading-tight);
}

.hero-title span {
    color: var(--gold-light);
}

/* Hero 副標題：使用 --text-xl (1.25rem = 20px) */
.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

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

/* ========== 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(--gradient-gold);
    color: var(--purple-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-main);
    color: var(--purple-dark);
}

.btn-outline {
    background: transparent;
    color: var(--purple-main);
    border: 2px solid var(--purple-main);
}

.btn-outline:hover {
    background: var(--purple-main);
    color: var(--white);
}

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

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

/* Section 標籤：使用 --text-sm (0.875rem = 14px) */
.section-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wider);
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

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

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

/* ========== Stats Section ========== */
.stats {
    background: var(--gradient-hero);
    padding: var(--space-16) 0;
}

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

.stat-card {
    text-align: center;
    padding: var(--space-5);
}

/* 統計數字：使用 --text-5xl (3rem = 48px) */
.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--gold-light);
    margin-bottom: var(--space-3);
}

/* 統計標籤：使用 --text-base (1rem = 16px) */
.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-base);
}

/* ========== Introduction Section ========== */
.intro {
    background: var(--white);
}

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

.intro-image {
    position: relative;
}

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

.intro-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-main);
    border-radius: var(--radius-xl);
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* Intro H2：使用 --text-4xl (2.25rem = 36px) */
.intro-text h2 {
    font-size: var(--text-4xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
}

/* Intro 內文：使用 --text-base (1rem = 16px) */
.intro-text p {
    color: var(--text-gray);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.intro-highlight {
    background: var(--purple-pale);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--purple-main);
    margin-top: var(--space-8);
}

.intro-highlight p {
    color: var(--purple-dark);
    font-weight: var(--font-medium);
    margin-bottom: 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ========== Research Section ========== */
.research {
    background: var(--purple-pale);
}

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

.research-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-purple-md);
    border: 1px solid var(--border-light);
}

/* Research 卡片 H3：使用 --text-lg (1.125rem = 18px) */
.research-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--purple-dark);
    margin-bottom: var(--space-3);
}

/* Research Meta：使用 --text-sm (0.875rem = 14px) */
.research-card .research-meta {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--border-light);
}

.research-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.research-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Research 標籤：使用 --text-sm (0.875rem = 14px) */
.research-item-label {
    color: var(--text-gray);
    font-size: var(--text-sm);
}

/* Research 數值：使用 --text-xl (1.25rem = 20px) */
.research-item-value {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--purple-main);
}

.research-item-value.highlight {
    color: var(--gold-dark);
}

/* ========== Benefits Section ========== */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal) var(--ease-out);
    border: 1px solid rgba(107, 45, 155, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 28, 107, 0.15);
}

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

/* Benefit 卡片 H3：使用 --text-xl (1.25rem = 20px) */
.benefit-card h3 {
    font-size: var(--text-xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
    font-weight: var(--font-bold);
}

/* Benefit 卡片內文：使用 --text-sm (0.875rem = 14px) */
.benefit-card p {
    color: var(--text-gray);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

/* ========== Suitable For Section ========== */
.suitable {
    background: var(--white);
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.suitable-card {
    background: var(--bg-light);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal) var(--ease-out);
    border: 2px solid transparent;
}

.suitable-card:hover {
    border-color: var(--gold-main);
    background: var(--white);
}

/* Suitable 卡片 H3：使用 --text-lg (1.125rem = 18px) */
.suitable-card h3 {
    font-size: var(--text-lg);
    color: var(--purple-dark);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: var(--font-bold);
}

.suitable-card h3::before {
    content: '✦';
    color: var(--gold-main);
}

/* Suitable 卡片內文：使用 --text-sm (0.875rem = 14px) */
.suitable-card p {
    color: var(--text-gray);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--gold-main);
    transition: all var(--transition-normal) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Testimonial 星星：使用 --text-lg (1.125rem = 18px) */
.testimonial-stars {
    color: var(--gold-main);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

/* Testimonial 引言：使用 --text-base (1rem = 16px) */
.testimonial-quote {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
    font-style: italic;
}

/* Testimonial 作者：使用 --text-base + semibold */
.testimonial-author {
    color: var(--purple-dark);
    font-weight: var(--font-semibold);
    text-align: right;
    font-size: var(--text-base);
}

/* ========== Process Section ========== */
.process {
    background: var(--purple-pale);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition-normal) var(--ease-out);
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

.step-icon {
    font-size: var(--text-5xl);
    margin: var(--space-5) 0;
}

/* Process H3：使用 --text-lg (1.125rem = 18px) */
.process-step h3 {
    font-size: var(--text-lg);
    color: var(--purple-dark);
    margin-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

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

/* Process 箭頭：使用 --text-4xl (2.25rem = 36px) */
.process-arrow {
    font-size: var(--text-4xl);
    color: var(--gold-main);
    align-self: center;
}

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

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

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

.pricing-card.featured {
    background: var(--white);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    content: '推薦';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: 5px 40px;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 28, 107, 0.15);
}

/* Pricing 標題：使用 --text-xl (1.25rem = 20px) */
.pricing-title {
    font-size: var(--text-xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

/* Pricing 價格：使用 --text-5xl (3rem = 48px) */
.pricing-price {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--gold-dark);
    margin: var(--space-5) 0;
}

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

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

/* Pricing 功能列表：使用 --text-base (1rem = 16px) */
.pricing-features li {
    padding: var(--space-3) 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(107, 45, 155, 0.1);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
}

.pricing-features li::before {
    content: '✓';
    color: var(--purple-main);
    font-weight: var(--font-bold);
}

/* Pricing 備註：使用 --text-sm (0.875rem = 14px) */
.pricing-note {
    font-size: var(--text-sm);
    color: var(--text-gray);
    margin-top: var(--space-4);
}

/* ========== FAQ Section ========== */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

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

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

.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(--purple-dark);
    transition: background var(--transition-normal) var(--ease-out);
}

.faq-question:hover {
    background: var(--purple-pale);
}

.faq-question span {
    flex: 1;
    padding-right: var(--space-4);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--gold-dark);
    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 答案：使用 --text-base (1rem = 16px) */
.faq-answer p {
    padding: 0 var(--space-8) var(--space-6);
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

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

/* CTA H2：使用 --text-4xl (2.25rem = 36px) */
.cta h2 {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-5);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
}

/* CTA 內文：使用 --text-lg (1.125rem = 18px) */
.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

.cta-image {
    max-width: 500px;
    margin: var(--space-10) auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-image img {
    width: 100%;
}

/* ========== Contact Section ========== */
.contact {
    background: var(--white);
}

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

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

/* Contact 內文：使用 --text-base (1rem = 16px) */
.contact-text p {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

.contact-info {
    background: var(--bg-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-purple-lg);
}

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

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

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

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

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

/* Contact 標籤：使用 --text-sm (0.875rem = 14px) */
.contact-label {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Contact 資訊：使用 --text-base (1rem = 16px) */
.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(--purple-main);
}

/* ========== 響應式設計 ========== */

/* 平板 (max-width: 992px) */
@media (max-width: 992px) {
    .intro-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

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

    .intro-image::before {
        display: none;
    }

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

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

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

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

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-5);
    }

    .stat-number {
        font-size: var(--text-4xl);
    }
}

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

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

    .btn {
        padding: var(--space-3) var(--space-8);
        font-size: var(--text-sm);
    }
}
