/* =====================================================
   SimpleLabs Women's Hormone Guide - Editorial Design
   ===================================================== */

/* CSS Variables */
:root {
    /* Color Palette - Warm & Earthy */
    --primary: #c17a5f;
    --primary-dark: #a6654e;
    --primary-light: #d49478;
    --accent: #8b7b6f;
    --accent-light: #a89888;
    --sage: #7a9b7e;
    --sage-light: #99b89c;
    
    /* Neutrals */
    --text-dark: #2d2520;
    --text-body: #4a4038;
    --text-muted: #6b5f54;
    --text-light: #8c7e73;
    
    /* Backgrounds */
    --bg-cream: #faf8f6;
    --bg-white: #ffffff;
    --bg-warm: #fef5f1;
    --bg-peach: #ffe9e0;
    --bg-sage: #f2f5f3;
    
    /* Borders */
    --border-light: #e8e1da;
    --border-medium: #d4c9bf;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(193, 122, 95, 0.08);
    --shadow-md: 0 4px 16px rgba(193, 122, 95, 0.12);
    --shadow-lg: 0 8px 24px rgba(193, 122, 95, 0.16);
    
    /* Typography */
    --font-serif: 'Crimson Pro', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Layout */
    --max-width-narrow: 680px;
    --max-width-medium: 860px;
    --max-width-wide: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

em {
    font-style: italic;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(193, 122, 95, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(122, 155, 126, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width-medium);
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-block;
    background: var(--bg-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-body);
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

/* Main Content */
.content {
    background: var(--bg-white);
}

.section {
    padding: var(--space-2xl) var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.section-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Body Text Styles */
.body-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.body-text.large {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}

.body-text.emphasis {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--space-md) 0;
    border-left: 3px solid var(--primary);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
}

/* Story Block - Opening Section */
.story-block {
    margin: var(--space-xl) 0;
}

.story-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--text-body);
}

.story-text .highlight {
    background: linear-gradient(180deg, transparent 60%, var(--bg-peach) 60%);
    padding: 0 4px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Callout Boxes */
.callout-box {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border: 1px solid var(--border-light);
}

.callout-box.primary {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    border-color: var(--primary-light);
}

.callout-box.warm {
    background: var(--bg-warm);
}

.callout-box.alert {
    background: var(--bg-peach);
    border-left: 4px solid var(--primary);
}

.callout-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.callout-question {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.callout-box p:last-child {
    margin-bottom: 0;
}

.big-idea {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Symptoms Section */
.symptoms-section {
    background: var(--bg-cream);
}

.symptom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.symptom-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.symptom-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.symptom-item.featured {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-white) 100%);
    border-color: var(--primary-light);
}

.symptom-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.symptom-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.symptom-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* Reason Cards - Labs Section */
.labs-section {
    background: var(--bg-white);
}

.reason-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.reason-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--primary);
}

.reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.reason-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
}

.reason-content p {
    margin-bottom: var(--space-md);
}

.reason-content p:last-child {
    margin-bottom: 0;
}

.reason-insight {
    background: var(--bg-white);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
    border-left: 3px solid var(--sage);
    font-weight: 500;
}

/* Lists */
.clean-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.clean-list li {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    position: relative;
}

.clean-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.clean-list.compact li {
    margin-bottom: var(--space-xs);
}

/* Factors Section */
.happening-section {
    background: var(--bg-cream);
}

.factors-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.factor-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.factor-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.factor-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.factor-title {
    font-size: 1.375rem;
    margin: 0;
    padding-top: 8px;
}

.factor-content p {
    margin-bottom: var(--space-md);
}

.factor-content p:last-child {
    margin-bottom: 0;
}

.factor-highlight {
    background: var(--bg-warm);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
    border-left: 3px solid var(--primary);
}

.symptom-sublist {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.symptom-sublist li {
    padding-left: var(--space-md);
    position: relative;
    font-size: 0.9375rem;
}

.symptom-sublist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.nutrient-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.nutrient-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

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

/* Medical Gaslighting Section */
.gaslighting-section {
    background: var(--bg-white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.stat-box {
    background: var(--bg-peach);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    border: 2px solid var(--primary-light);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-body);
}

.affirmation-box {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: center;
    border: 2px solid var(--primary-light);
}

.affirmation-box p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.affirmation-box p:last-child {
    margin-bottom: 0;
}

.affirmation-box.final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.affirmation-box.final p {
    color: var(--bg-white);
}

/* Systems Section */
.systems-section {
    background: var(--bg-sage);
}

.metaphor-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--sage-light);
}

.metaphor-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.garden-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-lg) 0;
}

.garden-list li {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.garden-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metaphor-insight {
    background: var(--bg-sage);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
    font-style: italic;
    border-left: 3px solid var(--sage);
}

.subsection-title {
    font-size: 1.5rem;
    margin: var(--space-xl) 0 var(--space-lg) 0;
    text-align: center;
}

.signal-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.signal-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.signal-symptom {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.signal-meaning {
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Action Section */
.action-section {
    background: var(--bg-white);
}

.foundations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.foundation-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.foundation-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.foundation-card.featured {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    border-color: var(--primary);
    border-width: 3px;
}

.foundation-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--bg-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.foundation-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.foundation-intro {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.foundation-how,
.foundation-why {
    margin: var(--space-md) 0;
}

.foundation-how strong,
.foundation-why strong {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.foundation-how ul {
    list-style: none;
    padding-left: 0;
}

.foundation-how li {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    position: relative;
    font-size: 0.9375rem;
}

.foundation-how li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.foundation-why {
    background: var(--bg-white);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Testing Section */
.testing-section {
    background: var(--bg-cream);
}

.test-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.test-panel {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--border-light);
}

.test-panel-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-light);
}

.test-timing {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.test-day {
    background: var(--bg-cream);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
}

.test-day strong {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.test-day ul {
    list-style: none;
    padding-left: 0;
}

.test-day li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: 0.9375rem;
}

.test-day li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.test-list {
    list-style: none;
    padding-left: 0;
}

.test-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-md);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

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

.test-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.test-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Closing Section */
.closing-section {
    background: var(--bg-white);
}

.closing-message {
    margin: var(--space-xl) 0;
}

.closing-message p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.big-statement {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: center;
    border: 3px solid var(--primary);
}

.big-statement p {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.big-statement p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-peach) 100%);
    padding: var(--space-2xl) var(--space-md);
}

.cta-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.cta-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.cta-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.cta-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.cta-card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--text-body);
}

.cta-button {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: var(--bg-cream);
    color: var(--text-dark);
    border: 2px solid var(--border-medium);
}

.cta-button.secondary:hover {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: var(--space-xl) var(--space-md);
}

.footer-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--bg-white);
}

.footer-tagline {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-light);
}

.footer-cta {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.0625rem;
}

.footer-cta:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .symptom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .symptom-item.featured {
        grid-column: 1 / -1;
    }
    
    .foundations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .foundation-card.featured {
        grid-column: 1 / -1;
    }
    
    .signal-item {
        flex-direction: row;
        align-items: center;
    }
    
    .signal-symptom {
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: var(--space-xl) var(--space-md);
    }
    
    .section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .factor-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Print Styles */
@media print {
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
