/* ============================================
   SERVICE PILLAR PAGES - Body Symmetry MD
   Template: page-service-pillar.php
   ============================================ */

/* Token bridge from main theme */
:root {
    --brand-red: #CC0000;
    --brand-red-dark: #a30000;
    --brand-red-light: rgba(204, 0, 0, 0.08);
    --brand-grey: #E6E6E6;
    --brand-grey-dark: #d0d0d0;
    --brand-black: #000000;
    --brand-black-light: #1a1a1a;
    --brand-white: #FFFFFF;
    --brand-blue: #10769E;
    --brand-blue-dark: #0d5f7f;
    --brand-blue-light: rgba(16, 118, 158, 0.1);
    --text-primary: #000000;
    --text-secondary: #5a5556;
    --text-muted: #666162;
    --success: #16a34a;
    --success-light: rgba(22, 163, 74, 0.1);
    --warning: #ea580c;
    --warning-light: rgba(234, 88, 12, 0.08);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* Layout */
.sp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sp-wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.sp-section { padding: 5rem 0; }
.sp-section-alt { background: #f9f9f9; }

/* Buttons */
.sp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.025em;
    transition: all var(--transition); cursor: pointer; border: none; text-decoration: none;
}
.sp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sp-btn-red { background: var(--brand-red); color: var(--brand-white); }
.sp-btn-red:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sp-btn-outline-light { background: transparent; border: 2px solid var(--brand-white); color: var(--brand-white); }
.sp-btn-outline-light:hover { background: var(--brand-white); color: var(--brand-black); }
.sp-btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.sp-btn-block { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.sp-hero {
    background: linear-gradient(135deg, var(--brand-black) 0%, #1a1a1a 100%);
    color: var(--brand-white);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.3;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.sp-hero .sp-wrap { position: relative; z-index: 1; }

.sp-breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
}
.sp-breadcrumb a { color: rgba(255,255,255,0.6); }
.sp-breadcrumb a:hover { color: var(--brand-white); }
.sp-breadcrumb-sep { opacity: 0.4; }
.sp-breadcrumb-current { color: var(--brand-white); }

.sp-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-blue); color: var(--brand-white);
    padding: 0.375rem 1rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.sp-hero-badge svg { width: 14px; height: 14px; }

.sp-hero h1 {
    font-size: 3.25rem; font-weight: 700; line-height: 1.1;
    color: var(--brand-white); margin-bottom: 1.25rem; max-width: 800px;
}
.sp-hero-subtitle {
    font-size: 1.25rem; color: rgba(255,255,255,0.85);
    line-height: 1.6; max-width: 650px; margin-bottom: 2rem;
}

.sp-quick-answer {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--brand-blue);
    border-radius: var(--radius-md);
    padding: 1.5rem; margin-bottom: 2rem; max-width: 700px;
}
.sp-quick-answer-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--brand-blue); margin-bottom: 0.75rem;
}
.sp-quick-answer-label svg { width: 14px; height: 14px; }
.sp-quick-answer p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin: 0; }
.sp-quick-answer strong { color: var(--brand-white); }

.sp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.sp-hero-stats {
    display: flex; gap: 3rem; flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.sp-stat-value {
    font-family: var(--font-display); font-size: 2.5rem;
    font-weight: 700; color: var(--brand-white); line-height: 1;
}
.sp-stat-value span { color: var(--brand-red); }
.sp-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 0.375rem; }

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.sp-toc { padding: 3rem 0; background: var(--brand-grey); }
.sp-toc-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
.sp-toc-card {
    background: var(--brand-white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-md);
}
.sp-toc-title {
    font-size: 1.25rem; margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.625rem;
}
.sp-toc-title svg { width: 20px; height: 20px; color: var(--brand-blue); }
.sp-toc-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.sp-toc-link {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1rem; background: #f9f9f9;
    border-radius: var(--radius-md); font-size: 0.9375rem;
    font-weight: 500; color: var(--text-primary); transition: all var(--transition);
}
.sp-toc-link:hover { background: var(--brand-blue-light); color: var(--brand-blue); transform: translateX(4px); }
.sp-toc-link-num {
    width: 24px; height: 24px; background: var(--brand-grey);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
    flex-shrink: 0; transition: all var(--transition);
}
.sp-toc-link:hover .sp-toc-link-num { background: var(--brand-blue); color: var(--brand-white); }

.sp-sticky-sidebar { position: sticky; top: 140px; }
.sp-sticky-cta {
    background: var(--brand-black); color: var(--brand-white);
    border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.sp-sticky-cta-badge {
    display: inline-block; background: var(--brand-red); color: var(--brand-white);
    padding: 0.25rem 0.875rem; border-radius: var(--radius-full);
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1rem;
}
.sp-sticky-cta h3 { font-size: 1.375rem; color: var(--brand-white); margin-bottom: 0.75rem; }
.sp-sticky-cta p { font-size: 0.9375rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.sp-sticky-cta .sp-btn { width: 100%; margin-bottom: 1rem; }
.sp-sticky-cta-phone { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.sp-sticky-cta-phone a { color: var(--brand-white); font-weight: 600; }
.sp-sticky-cta-phone a:hover { color: var(--brand-red); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.sp-section-header { text-align: center; max-width: 650px; margin: 0 auto 3rem; }
.sp-section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--brand-blue); margin-bottom: 0.75rem;
}
.sp-section-title { font-size: 2.25rem; margin-bottom: 1rem; }
.sp-section-subtitle { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   SYMPTOM CHECKER
   ============================================ */
.sp-symptom-checker { padding: 5rem 0; }
.sp-symptom-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; max-width: 850px; margin: 0 auto 2rem;
}
.sp-symptom-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem; background: var(--brand-white);
    border: 2px solid var(--brand-grey); border-radius: var(--radius-md);
    cursor: pointer; transition: all var(--transition); user-select: none;
    box-shadow: var(--shadow-sm);
}
.sp-symptom-item:hover { background: #f5f5f5; border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sp-symptom-item.selected { background: var(--brand-red-light); border-color: var(--brand-red); box-shadow: 0 4px 12px rgba(204,0,0,0.15); }
.sp-symptom-checkbox {
    width: 26px; height: 26px; border: 2px solid var(--text-muted);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; transition: all var(--transition);
    background: var(--brand-white);
}
.sp-symptom-item.selected .sp-symptom-checkbox { background: var(--brand-red); border-color: var(--brand-red); }
.sp-symptom-checkbox svg { width: 14px; height: 14px; color: var(--brand-white); opacity: 0; transform: scale(0.5); transition: all var(--transition); }
.sp-symptom-item.selected .sp-symptom-checkbox svg { opacity: 1; transform: scale(1); }
.sp-symptom-text { font-size: 1rem; font-weight: 500; color: var(--text-primary); }

.sp-symptom-result {
    text-align: center; max-width: 700px; margin: 0 auto;
    padding: 0; max-height: 0; overflow: hidden;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #0d6a8c 100%);
    border-radius: var(--radius-lg); opacity: 0; transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none;
    box-shadow: 0 15px 40px rgba(16,118,158,0.25);
}
.sp-symptom-result.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; padding: 2.5rem; max-height: 600px; overflow: visible; }
.sp-symptom-result-icon {
    width: 64px; height: 64px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1.25rem;
}
.sp-symptom-result-icon svg { width: 32px; height: 32px; color: var(--brand-white); }
.sp-symptom-result-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--brand-white); margin-bottom: 0.75rem; }
.sp-symptom-result-text { font-size: 1.0625rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 1.5rem; }
.sp-symptom-result-text strong { color: var(--brand-white); font-weight: 700; }
.sp-symptom-result .sp-btn { background: var(--brand-white); color: var(--brand-blue); font-weight: 700; padding: 1rem 2rem; font-size: 1rem; }
.sp-symptom-result .sp-btn:hover { background: #f5f5f5; transform: translateY(-2px); }
.sp-symptom-result-note { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.sp-article { padding: 5rem 0; }
.sp-article-content h2 { font-size: 2rem; margin-bottom: 1.5rem; scroll-margin-top: 140px; }
.sp-article-content h3 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.sp-article-content p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }
.sp-article-content ul, .sp-article-content ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.sp-article-content li { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 0.75rem; color: var(--text-secondary); }

.sp-key-fact {
    background: var(--brand-blue-light); border-left: 4px solid var(--brand-blue);
    border-radius: var(--radius-md); padding: 1.5rem; margin: 2rem 0;
}
.sp-key-fact-label {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--brand-blue); margin-bottom: 0.625rem;
}
.sp-key-fact-label svg { width: 16px; height: 16px; }
.sp-key-fact p { font-size: 1rem; color: var(--text-primary); margin-bottom: 0; }

/* ============================================
   SYMPTOMS CATEGORIES
   ============================================ */
.sp-symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sp-symptom-category {
    background: var(--brand-white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-md); transition: all var(--transition);
}
.sp-symptom-category:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sp-symptom-category-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.sp-symptom-category-icon.red { background: var(--brand-red-light); color: var(--brand-red); }
.sp-symptom-category-icon.blue { background: var(--brand-blue-light); color: var(--brand-blue); }
.sp-symptom-category-icon.green { background: var(--success-light); color: var(--success); }
.sp-symptom-category-icon svg { width: 28px; height: 28px; }
.sp-symptom-category h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.sp-symptom-category-list li {
    display: flex; align-items: flex-start; gap: 0.625rem;
    padding: 0.625rem 0; border-bottom: 1px solid var(--brand-grey);
    font-size: 0.9375rem; color: var(--text-secondary); list-style: none;
}
.sp-symptom-category-list li:last-child { border-bottom: none; }
.sp-symptom-category-list svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ============================================
   BENEFITS GRID
   ============================================ */
.sp-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sp-benefit-card {
    background: #f9f9f9; border-radius: var(--radius-lg); padding: 1.75rem;
    text-align: center; transition: all var(--transition); border: 2px solid transparent;
}
.sp-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); background: var(--brand-white); }
.sp-benefit-icon {
    width: 64px; height: 64px; background: var(--brand-blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; transition: all var(--transition);
}
.sp-benefit-card:hover .sp-benefit-icon { background: var(--brand-blue); }
.sp-benefit-icon svg { width: 28px; height: 28px; color: var(--brand-blue); transition: color var(--transition); }
.sp-benefit-card:hover .sp-benefit-icon svg { color: var(--brand-white); }
.sp-benefit-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.sp-benefit-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   TREATMENT OPTIONS
   ============================================ */
.sp-treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sp-treatment-card {
    background: var(--brand-white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition);
}
.sp-treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sp-treatment-header {
    background: var(--brand-black); color: var(--brand-white);
    padding: 1.5rem; position: relative;
}
.sp-treatment-card.popular .sp-treatment-header {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
}
.sp-treatment-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: var(--brand-white); color: var(--brand-red);
    padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
}
.sp-treatment-header h3 { font-size: 1.375rem; color: var(--brand-white); margin-bottom: 0.25rem; }
.sp-treatment-header p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0; }
.sp-treatment-body { padding: 1.75rem; }
.sp-treatment-features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.75rem 0; border-bottom: 1px solid var(--brand-grey);
    font-size: 0.9375rem; list-style: none;
}
.sp-treatment-features li:last-child { border-bottom: none; }
.sp-treatment-features svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   TIMELINE
   ============================================ */
.sp-timeline { max-width: 700px; margin: 3rem auto 0; position: relative; }
.sp-timeline::before {
    content: ''; position: absolute; left: 23px; top: 0; bottom: 0;
    width: 2px; background: var(--brand-grey);
}
.sp-timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.sp-timeline-item:last-child { padding-bottom: 0; }
.sp-timeline-marker {
    width: 48px; height: 48px; background: var(--brand-red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-white); font-family: var(--font-display);
    font-weight: 700; flex-shrink: 0; position: relative; z-index: 1;
}
.sp-timeline-content { flex: 1; padding-top: 0.5rem; }
.sp-timeline-time {
    display: inline-block; background: var(--brand-grey); color: var(--text-muted);
    padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
    font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.75rem;
}
.sp-timeline-content h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.sp-timeline-content p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.sp-faq-list { max-width: 800px; margin: 3rem auto 0; }
.sp-faq-item {
    background: var(--brand-white); border-radius: var(--radius-lg);
    margin-bottom: 1rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.sp-faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.75rem; cursor: pointer; transition: background var(--transition);
}
.sp-faq-question:hover { background: #f9f9f9; }
.sp-faq-question h3 { font-size: 1.0625rem; font-weight: 600; margin: 0; padding-right: 1rem; }
.sp-faq-toggle {
    width: 32px; height: 32px; background: var(--brand-grey); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition);
}
.sp-faq-toggle svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform var(--transition); }
.sp-faq-item.open .sp-faq-toggle { background: var(--brand-red); }
.sp-faq-item.open .sp-faq-toggle svg { color: var(--brand-white); transform: rotate(180deg); }
.sp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.sp-faq-answer-inner { padding: 0 1.75rem 1.5rem; font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   PATIENT STORY
   ============================================ */
.sp-transform-card {
    display: grid; grid-template-columns: 320px 1fr;
    background: var(--brand-white); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
    max-width: 900px; margin: 3rem auto 0;
}
.sp-transform-image {
    position: relative;
    background: linear-gradient(135deg, var(--brand-grey) 0%, #ccc 100%);
    min-height: 400px; overflow: hidden;
}
.sp-transform-image-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; transition: opacity 0.4s ease;
}
.sp-transform-image-placeholder.before { z-index: 2; background: linear-gradient(135deg, #ddd 0%, #bbb 100%); }
.sp-transform-image-placeholder.after {
    z-index: 1; background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--brand-white);
}
.sp-transform-card:hover .sp-transform-image-placeholder.before { opacity: 0; }
.sp-transform-image-placeholder svg { width: 64px; height: 64px; color: rgba(0,0,0,0.2); margin-bottom: 0.5rem; }
.sp-transform-image-placeholder.after svg { color: rgba(255,255,255,0.3); }
.sp-transform-image-placeholder span { font-size: 0.875rem; font-weight: 600; color: rgba(0,0,0,0.4); }
.sp-transform-image-placeholder.after span { color: rgba(255,255,255,0.6); }
.sp-transform-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--brand-red); color: var(--brand-white);
    padding: 0.5rem 1rem; border-radius: var(--radius-full);
    font-size: 1rem; font-weight: 700; z-index: 10;
}
.sp-transform-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.sp-transform-meta { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.sp-transform-tag {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
}
.sp-transform-tag.service { background: var(--brand-blue-light); color: var(--brand-blue); }
.sp-transform-tag.verified { background: var(--success-light); color: var(--success); }
.sp-transform-tag svg { width: 12px; height: 12px; }
.sp-transform-content h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.sp-transform-details { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.sp-transform-quote {
    font-size: 1.0625rem; font-style: italic; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 1.5rem; padding-left: 1.25rem;
    border-left: 3px solid var(--brand-red);
}
.sp-transform-quote em { font-style: normal; color: var(--text-primary); font-weight: 600; }
.sp-transform-stats { display: flex; gap: 2rem; }
.sp-transform-stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brand-red); }
.sp-transform-stat-label { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================
   CLUSTER LINKS
   ============================================ */
.sp-cluster { padding: 5rem 0; background: var(--brand-black); }
.sp-cluster .sp-section-title { color: var(--brand-white); }
.sp-cluster .sp-section-subtitle { color: rgba(255,255,255,0.7); }
.sp-cluster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sp-cluster-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
}
.sp-cluster-card:hover { transform: translateY(-4px); border-color: var(--brand-red); background: rgba(255,255,255,0.08); }
.sp-cluster-icon {
    width: 48px; height: 48px; background: var(--brand-blue);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.25rem;
}
.sp-cluster-icon svg { width: 24px; height: 24px; color: var(--brand-white); }
.sp-cluster-card h4 { font-size: 1.125rem; color: var(--brand-white); margin-bottom: 0.625rem; }
.sp-cluster-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 1rem; }
.sp-cluster-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--brand-red); font-size: 0.875rem; font-weight: 600; transition: gap var(--transition);
}
.sp-cluster-link:hover { gap: 0.75rem; }
.sp-cluster-link svg { width: 16px; height: 16px; }

/* ============================================
   LOCATIONS
   ============================================ */
.sp-locations { background: #f9f9f9; padding: 5rem 0; }
.sp-locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.sp-region-title {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
    color: var(--brand-blue); margin-bottom: 1.25rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-blue-light);
}
.sp-region-title svg { width: 20px; height: 20px; flex-shrink: 0; }
.sp-location-cards { display: flex; flex-direction: column; gap: 1rem; }
.sp-location-card {
    background: var(--brand-white); padding: 1.5rem; border-radius: var(--radius-md);
    border: 1px solid var(--brand-grey); transition: all var(--transition); position: relative;
}
.sp-location-card:hover { border-color: var(--brand-blue); box-shadow: var(--shadow-md); }
.sp-location-card.featured { border-color: var(--brand-blue); border-width: 2px; }
.sp-location-badge {
    position: absolute; top: -10px; right: 1rem;
    background: var(--brand-blue); color: var(--brand-white);
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    padding: 0.25rem 0.75rem; border-radius: 100px;
}
.sp-location-card h4 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.sp-location-address { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.75rem; }
.sp-location-serving { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.sp-location-serving strong { color: var(--text-secondary); }
.sp-location-link { font-size: 0.875rem; font-weight: 600; color: var(--brand-blue); }
.sp-location-link:hover { color: var(--brand-blue-dark); }

.sp-service-areas {
    background: var(--brand-white); padding: 2rem; border-radius: var(--radius-lg);
    border: 1px solid var(--brand-grey);
}
.sp-service-areas h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1.25rem; text-align: center; }
.sp-service-areas p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; text-align: center; }
.sp-service-areas p:last-child { margin-bottom: 0; }
.sp-service-areas strong { color: var(--brand-blue); font-weight: 600; }

/* ============================================
   CTA SECTION
   ============================================ */
.sp-cta { padding: 6rem 0; background: linear-gradient(135deg, #f5f5f5 0%, var(--brand-grey) 100%); }
.sp-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sp-cta-content .sp-section-label { text-align: left; }
.sp-cta-content h2 { font-size: 2.5rem; margin-bottom: 1.25rem; }
.sp-cta-content h2 .highlight { color: var(--brand-red); }
.sp-cta-content > p { font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.sp-cta-benefits { margin-bottom: 2rem; }
.sp-cta-benefit { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0; font-size: 1rem; font-weight: 500; }
.sp-cta-benefit svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; }
.sp-cta-phone { padding: 1.25rem 1.5rem; background: var(--brand-white); border-radius: var(--radius-md); display: inline-block; }
.sp-cta-phone p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.sp-cta-phone a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.sp-cta-phone a:hover { color: var(--brand-red); }

.sp-form-card { background: var(--brand-white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-xl); }
.sp-form-card h3 { font-size: 1.5rem; text-align: center; margin-bottom: 1.75rem; }
.sp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-form-group { margin-bottom: 1.25rem; }
.sp-form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-primary); }
.sp-form-input, .sp-form-select {
    width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--brand-grey);
    border-radius: var(--radius-md); font-family: var(--font-body);
    font-size: 1rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.sp-form-input:focus, .sp-form-select:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px var(--brand-blue-light); }
.sp-form-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.5rem; }
.sp-form-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-red); }
.sp-form-checkbox label { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; }
.sp-form-checkbox a { color: var(--brand-blue); }
.sp-form-submit {
    width: 100%; padding: 1rem 2rem; background: var(--brand-red);
    color: var(--brand-white); border: none; border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all var(--transition);
}
.sp-form-submit:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sp-form-note { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sp-hero h1 { font-size: 2.5rem; }
    .sp-toc-grid { grid-template-columns: 1fr; }
    .sp-sticky-sidebar { position: static; }
    .sp-toc-links { grid-template-columns: 1fr 1fr; }
    .sp-symptoms-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-treatment-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .sp-cluster-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-locations-grid { grid-template-columns: 1fr 1fr; }
    .sp-cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sp-hero { padding: 8rem 0 4rem; }
    .sp-hero h1 { font-size: 2rem; }
    .sp-hero-subtitle { font-size: 1.125rem; }
    .sp-hero-stats { gap: 2rem; }
    .sp-stat-value { font-size: 2rem; }
    .sp-section { padding: 4rem 0; }
    .sp-section-title { font-size: 1.75rem; }
    .sp-symptom-grid { grid-template-columns: 1fr; }
    .sp-symptoms-grid { grid-template-columns: 1fr; }
    .sp-benefits-grid { grid-template-columns: 1fr 1fr; }
    .sp-cluster-grid { grid-template-columns: 1fr; }
    .sp-locations-grid { grid-template-columns: 1fr; }
    .sp-toc-links { grid-template-columns: 1fr; }
    .sp-transform-card { grid-template-columns: 1fr; }
    .sp-transform-image { min-height: 280px; }
    .sp-cta-content h2 { font-size: 2rem; }
    .sp-form-card { padding: 1.75rem; }
    .sp-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .sp-wrap { padding: 0 1rem; }
    .sp-hero h1 { font-size: 1.75rem; }
    .sp-hero-ctas { flex-direction: column; }
    .sp-hero-ctas .sp-btn { width: 100%; }
    .sp-hero-stats { flex-direction: column; gap: 1.5rem; }
    .sp-benefits-grid { grid-template-columns: 1fr; }
    .sp-transform-stats { flex-direction: column; gap: 1rem; }
}
