/* ===== PILLAR PAGE STYLES ===== */
/* Extends the main styles.css for content-heavy pages */
@import url('../styles.css');

/* CSS Variables for Life Path Pages */
:root {
    --accent: #d4af37;
    --accent-gold: #d4af37;
    --sunset-orange: #ff6b35;
    --cosmic-purple: #4a148c;
    --bg-card: rgba(30, 35, 45, 0.8);
    --text-primary: #f5f5dc;
    --text-secondary: #c0c0d8;
    --text-muted: #94a3b8;
    --border-color: rgba(212, 175, 55, 0.2);
}

/* Base Body - Apply dark theme to all pages using this CSS */
body {
    background: linear-gradient(180deg, #0a0a0f 0%, #0f1419 50%, #0a0a0f 100%);
    color: #f5f5dc;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
}

/* Base Body Override (legacy class support) */
.pillar-page {
    background: linear-gradient(180deg, #0a0a0f 0%, #0f1419 50%, #0a0a0f 100%);
    color: #f5f5dc;
}

/* ===== CONTENT LAYOUT WITH STICKY TOC ===== */
.content-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    align-items: flex-start;
}

/* Sticky Sidebar TOC */
.toc-sidebar {
    position: sticky;
    top: 90px;
    width: 260px;
    flex-shrink: 0;
    max-height: calc(100vh - 110px);
    padding: 0 0 2rem 1.5rem;
}

.toc-nav {
    padding: 1.5rem;
    background: rgba(20, 25, 35, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.toc-nav::-webkit-scrollbar {
    width: 4px;
}

.toc-nav::-webkit-scrollbar-track {
    background: transparent;
}

.toc-nav::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.toc-nav .toc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--accent-gold);
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.toc-list li {
    margin: 0;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin: 0.15rem 0;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.toc-link:hover {
    color: #f5f5dc;
    background: rgba(212, 175, 55, 0.08);
}

.toc-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    border-left-color: var(--accent-gold);
}

.toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.toc-link.active .toc-num {
    background: var(--accent-gold);
    color: #0a0a0f;
}

.toc-divider {
    margin: 1rem 0 0.5rem;
    padding: 0 0.75rem;
}

.toc-divider span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.toc-cta {
    display: block;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--sunset-orange));
    color: #0a0a0f;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Mobile TOC Toggle */
.toc-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--sunset-orange));
    border: none;
    border-radius: 50%;
    color: #0a0a0f;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.toc-mobile-toggle:hover {
    transform: scale(1.1);
}

/* Hide sidebar on mobile, show toggle */
@media (max-width: 1024px) {
    .content-layout {
        display: block;
    }

    .toc-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 80px 0 2rem 0;
        background: rgba(10, 12, 18, 0.98);
    }

    .toc-sidebar.open {
        transform: translateX(0);
    }

    .toc-nav {
        max-height: calc(100vh - 100px);
        border-radius: 0;
        border: none;
        border-right: 1px solid rgba(212, 175, 55, 0.15);
        background: transparent;
    }

    .toc-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .toc-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .toc-overlay.open {
        display: block;
    }

    .pillar-content {
        max-width: 100%;
    }
}

/* Header - Solid Version */
.header-solid {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #f5f5dc;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.header-solid .nav {
    display: flex;
    gap: 2rem;
}

.header-solid .nav-link {
    color: #c0c0d8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-solid .nav-link:hover {
    color: var(--accent-gold);
}

.header-solid .cta-button {
    background: linear-gradient(135deg, var(--accent-gold), var(--sunset-orange));
    color: #0a0a0f;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-solid .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* ===== HERO SECTION ===== */
.pillar-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero CTA Box */
.hero-cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f5f5dc;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #c0c0d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator, 
.breadcrumb span {
    color: var(--text-muted);
    font-size: 0.8em;
}

.breadcrumb .current {
    color: var(--accent-gold);
    font-weight: 500;
}

.cta-box-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.cta-box-icon {
    font-size: 2.5rem;
}

.cta-box-text strong {
    display: block;
    font-size: 1.1rem;
    color: #f5f5dc;
    margin-bottom: 0.25rem;
}

.cta-box-text span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Old TOC grid styles removed - using sidebar now */

/* ===== MAIN CONTENT ===== */
.pillar-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f5f5dc;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f5f5dc;
    margin: 2rem 0 1rem;
}

.content-section h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin: 1.5rem 0 0.75rem;
}

.content-section p {
    color: #c0c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: #d0d0e8 !important;
    line-height: 1.9;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    color: #c0c0d8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: #f5f5dc;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 107, 53, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.25rem;
}

.info-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.info-card-content ul {
    margin-bottom: 0;
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(74, 20, 140, 0.08));
    border-color: rgba(212, 175, 55, 0.35);
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--sunset-orange));
    color: #0a0a0f;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button-secondary {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-button-secondary:hover {
    border-bottom-color: var(--accent-gold);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 20, 140, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-banner-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cta-banner-text {
    flex: 1;
    min-width: 250px;
}

.cta-banner-text h3 {
    font-family: 'Playfair Display', serif;
    color: #f5f5dc;
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.cta-banner-text p {
    color: #c0c0d8;
    margin: 0;
    line-height: 1.6;
}

.cta-banner .cta-button {
    flex-shrink: 0;
}

.friends-cta {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.15), rgba(212, 175, 55, 0.08));
}

/* Inline CTA */
.inline-cta {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
}

.inline-cta p {
    margin-bottom: 0.75rem;
}

/* ===== CALCULATOR EXAMPLE ===== */
.calculator-example {
    background: rgba(30, 35, 45, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.calculator-example h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
}

.example-label {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.calculation-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.step-text {
    color: #c0c0d8;
}

.step.result {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.step.result .step-num {
    background: var(--accent-gold);
    color: #0a0a0f;
}

.highlight {
    color: var(--accent-gold) !important;
    font-size: 1.3em;
}

/* ===== LIFE PATH CARDS OVERVIEW ===== */
.life-paths-overview {
    margin: 4rem 0;
    text-align: center;
}

.life-paths-overview h2 {
    border: none;
    font-size: 2.2rem;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #c0c0d8;
}

.life-path-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.lp-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lp-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.lp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.lp-name {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
}

/* ===== LIFE PATH SECTIONS ===== */
.life-path-section {
    background: rgba(20, 25, 35, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.lp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lp-big-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.lp-title-group h2 {
    border: none;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.lp-keywords {
    color: #94a3b8;
    font-size: 0.95rem;
    font-style: italic;
}

.lp-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

.lp-main h3 {
    margin-top: 0;
}

/* Trait Lists */
.trait-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.trait-list li {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.trait-list.strengths li {
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid rgba(34, 197, 94, 0.5);
}

.trait-list.challenges li {
    background: rgba(255, 107, 53, 0.08);
    border-left: 3px solid rgba(255, 107, 53, 0.5);
}

/* Sidebar Cards */
.lp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
}

.sidebar-card h4 {
    color: var(--accent-gold);
    margin: 0 0 1rem;
    font-size: 1rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    padding: 0.4rem 0;
    color: #c0c0d8;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

/* Compatibility in Sidebar */
.compat-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.compat-item.good {
    background: rgba(34, 197, 94, 0.1);
}

.compat-item.neutral {
    background: rgba(212, 175, 55, 0.1);
}

.compat-item.challenging {
    background: rgba(255, 107, 53, 0.1);
}

.compat-nums {
    font-weight: 600;
    color: #f5f5dc;
}

.compat-label {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Life Path CTA */
.lp-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 20, 140, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.lp-cta h4 {
    color: #f5f5dc;
    margin: 0 0 0.5rem;
}

.lp-cta p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ===== MASTER NUMBERS ===== */
.master-section h2 {
    text-align: center;
    border: none;
}

.master-number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.master-card {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
}

.master-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.master-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cosmic-purple);
    text-shadow: 0 0 20px rgba(74, 20, 140, 0.5);
}

.master-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.master-card p {
    font-size: 0.95rem;
}

.master-card ul {
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

/* ===== COMPATIBILITY TABLE ===== */
.compat-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.compat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.compat-table th,
.compat-table td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.compat-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-weight: 600;
}

.compat-table td {
    background: rgba(0, 0, 0, 0.2);
}

.compat-table td.gd {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.compat-table td.ok {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.compat-table td.ch {
    background: rgba(255, 107, 53, 0.15);
    color: #ff8c5a;
}

.table-legend {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

.compat-highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 20, 140, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.compat-highlight-box h3 {
    margin-top: 0;
    color: #f5f5dc;
}

.compat-highlight-box ul {
    display: inline-block;
    text-align: left;
    margin: 1rem 0;
}

.compat-highlight-box .cta-button {
    margin-top: 1rem;
}

/* ===== DAILY GUIDANCE ===== */
.daily-example {
    background: rgba(30, 35, 45, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    max-width: 400px;
}

.daily-example-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-example-row:last-child {
    border-bottom: none;
}

.daily-example-row.result {
    background: rgba(212, 175, 55, 0.1);
    margin: 0.5rem -1rem -0.5rem;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

.daily-label {
    color: #94a3b8;
}

.daily-value {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.daily-value small {
    font-size: 0.7em;
    opacity: 0.7;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(74, 20, 140, 0.12));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f5f5dc;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.final-cta-content > p {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: #c0c0d8;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fcta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #c0c0d8;
}

.fcta-icon {
    font-size: 1.1rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===== FAQ SECTION ===== */
.faq-section h2 {
    text-align: center;
    border: none;
}

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

.faq-item {
    background: rgba(30, 35, 45, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #f5f5dc;
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.pillar-page .footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #f5f5dc;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c0c0d8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .lp-content {
        grid-template-columns: 1fr;
    }

    .lp-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .header-solid {
        padding: 0.75rem 1rem;
    }

    .header-solid .nav {
        display: none;
    }

    .pillar-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .pillar-hero h1 {
        font-size: 2.25rem;
    }

    .hero-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-box-content {
        flex-direction: column;
    }

    .pillar-content {
        padding: 2rem 1.5rem;
    }

    .life-path-section {
        padding: 1.5rem;
    }

    .lp-big-number {
        font-size: 3.5rem;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .master-number-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-section {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .life-path-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-card {
        padding: 1rem 0.5rem;
    }

    .lp-number {
        font-size: 1.5rem;
    }

    .lp-name {
        font-size: 0.7rem;
    }
}
