/* ================================================
   META-MASTERY™ — Premium Landing Page Styles
   Updated to align with Attune Brand Identity
   ================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Attune Brand Colors */
    --mm-primary: #0D1B2A;        /* Deep Navy - headlines, buttons */
    --mm-secondary: #D4A574;      /* Warm Amber - accents, highlights */
    --mm-background: #F8F6F3;     /* Soft White - section backgrounds */
    --mm-background-alt: #FFFFFF; /* White - alternate sections */
    --mm-text-dark: #2C3E50;      /* Charcoal - body text */
    --mm-text-light: #4A7C7E;     /* Accent Teal - secondary text */
    --mm-success: #10B981;        /* Green - checkmarks */
    --mm-error: #EF4444;          /* Red - X marks */
    --mm-accent-teal: #4A7C7E;    /* Accent Teal */
    
    /* Typography - Matching Attune main page */
    --mm-font-headline: 'Geist Sans', -apple-system, sans-serif;
    --mm-font-body: 'Geist Sans', -apple-system, sans-serif;
    --mm-font-mono: 'Geist Mono', monospace;
    
    /* Font Sizes */
    --mm-h1: clamp(2.5rem, 5vw, 3.5rem);
    --mm-h2: clamp(1.75rem, 4vw, 2.25rem);
    --mm-h3: clamp(1.25rem, 2.5vw, 1.5rem);
    --mm-body: 1.125rem;
    --mm-small: 0.875rem;
    
    /* Spacing */
    --mm-section-padding: clamp(60px, 10vw, 120px);
    --mm-container-max: 800px;
    --mm-container-wide: 1100px;
}

/* ========== BASE STYLES ========== */
.meta-mastery-page {
    background: var(--mm-background);
    color: var(--mm-text-dark);
    font-family: var(--mm-font-body);
    font-size: var(--mm-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.meta-mastery-page * {
    box-sizing: border-box;
}

/* ========== ANIMATED WAVE NETWORK BACKGROUND ========== */
.mm-organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.85;
}

.mm-organic-bg svg {
    width: 100%;
    height: 100%;
    min-width: 1920px;
    min-height: 1080px;
}

/* Wave base styles */
.mm-vine {
    stroke-linecap: round;
    stroke-linejoin: round;
    will-change: stroke-dashoffset, opacity;
}

/* Layer 1: Deep background - slowest, most subtle */
.mm-vine-layer-1 {
    opacity: 1;
}

.mm-vine-pulse-1 {
    stroke-dasharray: 20 30;
    animation: mmVinePulse1 12s ease-in-out infinite;
}

.mm-vine-pulse-2 {
    stroke-dasharray: 15 25;
    animation: mmVinePulse2 15s ease-in-out infinite;
    animation-delay: -5s;
}

.mm-vine-pulse-3 {
    stroke-dasharray: 25 35;
    animation: mmVinePulse3 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* Layer 2: Mid-ground - growing effect */
.mm-vine-layer-2 {
    opacity: 1;
}

.mm-vine-grow-1 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: mmVineGrow 20s ease-in-out infinite alternate;
}

.mm-vine-grow-2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: mmVineGrow 25s ease-in-out infinite alternate;
    animation-delay: -8s;
}

.mm-vine-grow-3 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: mmVineGrow 22s ease-in-out infinite alternate;
    animation-delay: -15s;
}

/* Branches - delayed growth */
.mm-vine-branch-1 {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: mmBranchGrow 8s ease-out infinite alternate;
    animation-delay: 2s;
}

.mm-vine-branch-2 {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: mmBranchGrow 10s ease-out infinite alternate;
    animation-delay: 4s;
}

.mm-vine-branch-3 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: mmBranchGrow 7s ease-out infinite alternate;
    animation-delay: 6s;
}

.mm-vine-branch-4 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: mmBranchGrow 9s ease-out infinite alternate;
    animation-delay: 3s;
}

.mm-vine-branch-5 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: mmBranchGrow 8s ease-out infinite alternate;
    animation-delay: 5s;
}

/* Layer 3: Foreground - floating tendrils */
.mm-vine-layer-3 {
    opacity: 1;
}

.mm-vine-float-1 {
    animation: mmVineFloat 20s ease-in-out infinite;
    transform-origin: center;
}

.mm-vine-float-2 {
    animation: mmVineFloat 25s ease-in-out infinite;
    animation-delay: -5s;
}

.mm-vine-float-3 {
    animation: mmVineFloat 22s ease-in-out infinite;
    animation-delay: -10s;
}

.mm-vine-float-4 {
    animation: mmVineFloat 28s ease-in-out infinite;
    animation-delay: -15s;
}

.mm-vine-float-5 {
    animation: mmVineFloat 24s ease-in-out infinite;
    animation-delay: -20s;
}

/* Neural nodes */
.mm-node-layer {
    opacity: 1;
}

.mm-node {
    will-change: opacity, r;
}

.mm-node-pulse-1 {
    animation: mmNodePulse 4s ease-in-out infinite;
}

.mm-node-pulse-2 {
    animation: mmNodePulse 5s ease-in-out infinite;
    animation-delay: -1s;
}

.mm-node-pulse-3 {
    animation: mmNodePulse 6s ease-in-out infinite;
    animation-delay: -2s;
}

.mm-node-pulse-4 {
    animation: mmNodePulse 4.5s ease-in-out infinite;
    animation-delay: -3s;
}

.mm-node-pulse-5 {
    animation: mmNodePulse 5.5s ease-in-out infinite;
    animation-delay: -4s;
}

/* Keyframe Animations */
@keyframes mmVinePulse1 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    50% {
        stroke-dashoffset: 50;
        opacity: 1;
    }
}

@keyframes mmVinePulse2 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: -40;
        opacity: 0.9;
    }
}

@keyframes mmVinePulse3 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.55;
    }
    50% {
        stroke-dashoffset: 60;
        opacity: 0.95;
    }
}

@keyframes mmVineGrow {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
}

@keyframes mmBranchGrow {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

@keyframes mmVineFloat {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0) translateX(0);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-5px) translateX(3px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-2px) translateX(-2px);
    }
    75% {
        opacity: 0.85;
        transform: translateY(3px) translateX(4px);
    }
}

@keyframes mmNodePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .mm-organic-bg {
        opacity: 0.2;
    }
    
    .mm-vine,
    .mm-node {
        animation: none !important;
    }
    
    .mm-vine-grow-1,
    .mm-vine-grow-2,
    .mm-vine-grow-3 {
        stroke-dashoffset: 0;
    }
    
    .mm-vine-branch-1,
    .mm-vine-branch-2,
    .mm-vine-branch-3,
    .mm-vine-branch-4,
    .mm-vine-branch-5 {
        stroke-dashoffset: 0;
    }
}

/* Content layer positioning - above background */
.mm-header,
main,
.mm-footer,
.mm-mobile-cta {
    position: relative;
    z-index: 10;
}

/* Make sections have backgrounds so text is readable */
.mm-section {
    background: rgba(248, 246, 243, 0.82);
}

.mm-section-alt {
    background: rgba(255, 255, 255, 0.85);
}

/* Hero section - more transparent to show more background */
.mm-hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 246, 243, 0.75) 100%);
}

/* ========== STICKY HEADER ========== */
.mm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 243, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
    transition: all 0.3s ease;
}

.mm-header.scrolled {
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.08);
}

.mm-header.scrolled .mm-logo {
    height: 44px;
}

.mm-header-inner {
    max-width: var(--mm-container-wide);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mm-logo {
    height: 56px;
    width: auto;
}

.mm-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mm-primary);
    color: var(--mm-background);
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mm-header-cta:hover {
    background: #1a2d42;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .mm-header-cta span {
        display: none;
    }
}

/* ========== CONTAINER ========== */
.mm-container {
    max-width: var(--mm-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.mm-container-wide {
    max-width: var(--mm-container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== SECTION BASE ========== */
.mm-section {
    padding: var(--mm-section-padding) 0;
}

.mm-section-alt {
    background: var(--mm-background-alt);
}

.mm-section-cream {
    background: var(--mm-background);
}

.mm-section-dark {
    background: var(--mm-primary);
    color: var(--mm-background);
}

/* ========== TYPOGRAPHY ========== */
.mm-pre-headline {
    font-family: var(--mm-font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mm-secondary);
    margin-bottom: 20px;
}

.mm-headline {
    font-family: var(--mm-font-headline);
    font-size: var(--mm-h1);
    font-weight: 700;
    line-height: 1.15;
    color: var(--mm-primary);
    margin-bottom: 24px;
}

.mm-section-headline {
    font-family: var(--mm-font-headline);
    font-size: var(--mm-h2);
    font-weight: 700;
    line-height: 1.25;
    color: var(--mm-primary);
    margin-bottom: 24px;
}

.mm-subheadline {
    font-family: var(--mm-font-body);
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--mm-text-dark);
    margin-bottom: 24px;
}

.mm-body-text {
    font-family: var(--mm-font-body);
    font-size: var(--mm-body);
    color: var(--mm-text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mm-body-text:last-child {
    margin-bottom: 0;
}

.mm-small-text {
    font-family: var(--mm-font-body);
    font-size: var(--mm-small);
    color: var(--mm-text-light);
}

/* ========== BUTTONS ========== */
.mm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--mm-font-headline);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.mm-btn-primary {
    background: var(--mm-primary);
    color: var(--mm-background);
    font-size: 1.125rem;
    padding: 18px 36px;
}

.mm-btn-primary:hover {
    background: #1a2d42;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.25);
}

.mm-btn-secondary {
    background: transparent;
    color: var(--mm-primary);
    font-size: 1rem;
    padding: 14px 28px;
    border: 2px solid var(--mm-primary);
}

.mm-btn-secondary:hover {
    background: var(--mm-primary);
    color: var(--mm-background);
}

.mm-btn-gold {
    background: var(--mm-secondary);
    color: var(--mm-primary);
    font-size: 1.125rem;
    padding: 18px 36px;
}

.mm-btn-gold:hover {
    background: #c9a45c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
}

/* ========== HERO SECTION ========== */
.mm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 246, 243, 0.7) 100%) !important;
}

.mm-hero-content {
    max-width: 800px;
}

.mm-hero .mm-headline {
    margin-bottom: 20px;
}

.mm-hero .mm-subheadline {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.mm-hero-supporting {
    font-family: var(--mm-font-body);
    font-size: 1rem;
    color: var(--mm-text-light);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.mm-hero-cta {
    margin-bottom: 20px;
}

.mm-hero-meta {
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    color: var(--mm-text-light);
    margin-bottom: 32px;
}

.mm-hero-meta span {
    margin: 0 8px;
    color: var(--mm-secondary);
}

.mm-hero-testimonial {
    font-family: var(--mm-font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--mm-text-light);
    padding-top: 24px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== PROBLEM SECTION ========== */
.mm-problem {
    background: rgba(248, 246, 243, 0.8);
}

.mm-problem-intro {
    margin-bottom: 40px;
}

.mm-pain-points {
    background: var(--mm-background-alt);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid var(--mm-secondary);
}

.mm-pain-points h3 {
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--mm-primary);
    margin-bottom: 20px;
}

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

.mm-pain-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--mm-text-dark);
}

.mm-pain-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mm-secondary);
    font-size: 1.25rem;
    line-height: 1.4;
}

.mm-twist {
    background: var(--mm-primary);
    color: var(--mm-background);
    padding: 40px;
    border-radius: 8px;
    margin-top: 48px;
}

.mm-twist h3 {
    font-family: var(--mm-font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mm-secondary);
    margin-bottom: 20px;
}

.mm-twist p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.mm-twist p:last-child {
    margin-bottom: 0;
}

.mm-old-model {
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mm-secondary);
    margin: 20px 0 12px;
    letter-spacing: 0.02em;
}

.mm-old-model-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.mm-old-model-steps li {
    font-family: var(--mm-font-headline);
    font-size: 0.9375rem;
    color: rgba(248, 246, 243, 0.8);
}

/* ========== PARADIGM SHIFT SECTION ========== */
.mm-paradigm {
    background: rgba(255, 255, 255, 0.8);
}

.mm-model-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .mm-model-comparison {
        grid-template-columns: 1fr;
    }
}

.mm-model-card {
    padding: 32px;
    border-radius: 8px;
}

.mm-model-old {
    background: #f0f0ec;
    border: 1px solid #e0e0dc;
}

.mm-model-new {
    background: var(--mm-primary);
    color: var(--mm-background);
}

.mm-model-label {
    font-family: var(--mm-font-headline);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mm-model-old .mm-model-label {
    color: var(--mm-text-light);
}

.mm-model-new .mm-model-label {
    color: var(--mm-secondary);
}

.mm-model-title {
    font-family: var(--mm-font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mm-model-old .mm-model-title {
    color: var(--mm-text-light);
}

.mm-model-new .mm-model-title {
    color: var(--mm-background);
}

.mm-model-content {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.mm-model-old .mm-model-content {
    color: var(--mm-text-light);
}

.mm-model-new .mm-model-content {
    color: rgba(248, 246, 243, 0.9);
}

.mm-model-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.mm-model-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.mm-model-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-family: var(--mm-font-headline);
}

.mm-model-old .mm-model-list li::before {
    color: var(--mm-text-light);
    opacity: 0.5;
}

.mm-model-new .mm-model-list li::before {
    color: var(--mm-secondary);
}

.mm-paradigm-conclusion {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-paradigm-conclusion p {
    font-size: 1.25rem;
    color: var(--mm-primary);
    font-weight: 500;
}

/* ========== SOLUTION / META METHOD SECTION ========== */
.mm-solution {
    background: rgba(248, 246, 243, 0.78);
}

.mm-solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.mm-solution-tagline {
    font-family: var(--mm-font-body);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--mm-secondary);
    margin-bottom: 24px;
}

.mm-meta-method {
    background: var(--mm-background-alt);
    padding: 48px;
    border-radius: 12px;
    border: 2px solid var(--mm-primary);
}

.mm-meta-method-header {
    text-align: center;
    margin-bottom: 40px;
}

.mm-meta-method-title {
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--mm-primary);
    margin-bottom: 8px;
}

.mm-meta-method-subtitle {
    font-family: var(--mm-font-body);
    font-size: 1rem;
    color: var(--mm-text-light);
}

.mm-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .mm-meta-grid {
        grid-template-columns: 1fr;
    }
    
    .mm-meta-method {
        padding: 32px 24px;
    }
}

.mm-meta-item {
    padding: 24px;
    background: var(--mm-background);
    border-radius: 8px;
}

.mm-meta-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mm-primary);
    color: var(--mm-background);
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 16px;
}

.mm-meta-item h4 {
    font-family: var(--mm-font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--mm-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mm-meta-item p {
    font-size: 0.9375rem;
    color: var(--mm-text-dark);
    line-height: 1.6;
}

/* ========== CURRICULUM SECTION ========== */
.mm-curriculum {
    background: rgba(255, 255, 255, 0.8);
}

.mm-curriculum-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.mm-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mm-module {
    background: var(--mm-background);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-module-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mm-module-header:hover {
    background: rgba(13, 27, 42, 0.03);
}

.mm-module-phase {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--mm-font-headline);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mm-secondary);
}

.mm-module-title {
    flex: 1;
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--mm-primary);
}

.mm-module-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mm-text-light);
    transition: transform 0.3s ease;
}

.mm-module.active .mm-module-toggle {
    transform: rotate(180deg);
}

.mm-module-content {
    display: none;
    padding: 0 24px 24px;
    padding-left: 124px;
}

.mm-module.active .mm-module-content {
    display: block;
}

@media (max-width: 768px) {
    .mm-module-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .mm-module-phase {
        width: 100%;
    }
    
    .mm-module-content {
        padding-left: 24px;
    }
}

.mm-module-desc {
    font-size: 1rem;
    color: var(--mm-text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.mm-module-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.mm-module-topics li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--mm-text-dark);
}

.mm-module-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mm-secondary);
}

.mm-module-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-module-meta span {
    font-family: var(--mm-font-headline);
    font-size: 0.8125rem;
    color: var(--mm-text-light);
}

.mm-module-meta strong {
    color: var(--mm-primary);
}

/* ========== PRINCIPLES SECTION ========== */
.mm-principles {
    background: var(--mm-primary);
    color: var(--mm-background);
}

.mm-principles .mm-section-headline {
    color: var(--mm-background);
    text-align: center;
}

.mm-principles-subtitle {
    text-align: center;
    font-family: var(--mm-font-body);
    font-size: 1.125rem;
    color: rgba(248, 246, 243, 0.8);
    max-width: 500px;
    margin: 0 auto 48px;
}

.mm-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .mm-principles-grid {
        grid-template-columns: 1fr;
    }
}

.mm-principle-card {
    background: rgba(248, 246, 243, 0.08);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid rgba(248, 246, 243, 0.1);
    transition: all 0.3s ease;
}

.mm-principle-card:hover {
    background: rgba(248, 246, 243, 0.12);
    border-color: var(--mm-secondary);
}

.mm-principle-num {
    font-family: var(--mm-font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mm-secondary);
    margin-bottom: 12px;
}

.mm-principle-title {
    font-family: var(--mm-font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--mm-background);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mm-principle-desc {
    font-size: 0.9375rem;
    color: rgba(248, 246, 243, 0.8);
    line-height: 1.6;
}

/* ========== WHO IT'S FOR SECTION ========== */
.mm-who {
    background: rgba(255, 255, 255, 0.8);
}

.mm-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .mm-who-grid {
        grid-template-columns: 1fr;
    }
}

.mm-who-card {
    padding: 32px;
    border-radius: 8px;
}

.mm-who-yes {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mm-who-no {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.mm-who-card h3 {
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.mm-who-yes h3 {
    color: var(--mm-success);
}

.mm-who-no h3 {
    color: var(--mm-error);
}

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

.mm-who-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--mm-text-dark);
    line-height: 1.5;
}

.mm-who-yes .mm-who-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mm-success);
    font-weight: 700;
}

.mm-who-no .mm-who-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--mm-error);
    font-weight: 700;
}

.mm-who-examples {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.mm-who-examples-label {
    font-family: var(--mm-font-headline);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mm-primary);
    margin-bottom: 12px;
}

.mm-who-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-who-examples li {
    font-size: 0.9375rem;
    color: var(--mm-text-light);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.mm-who-examples li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mm-text-light);
}

/* ========== TESTIMONIALS SECTION ========== */
.mm-testimonials {
    background: rgba(248, 246, 243, 0.78);
}

.mm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .mm-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.mm-testimonial-card {
    background: var(--mm-background-alt);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-testimonial-quote {
    font-family: var(--mm-font-body);
    font-size: 1rem;
    font-style: italic;
    color: var(--mm-text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.mm-testimonial-author {
    font-family: var(--mm-font-headline);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--mm-primary);
    margin-bottom: 4px;
}

.mm-testimonial-role {
    font-size: 0.8125rem;
    color: var(--mm-text-light);
    margin-bottom: 12px;
}

.mm-testimonial-result {
    font-family: var(--mm-font-headline);
    font-size: 0.75rem;
    color: var(--mm-secondary);
    padding-top: 12px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

/* ========== WHAT YOU GET SECTION ========== */
.mm-value {
    background: rgba(255, 255, 255, 0.8);
}

.mm-value-stack {
    margin-top: 48px;
}

.mm-value-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
}

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

.mm-value-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--mm-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

.mm-value-content h4 {
    font-family: var(--mm-font-headline);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--mm-primary);
    margin-bottom: 4px;
}

.mm-value-content p {
    font-size: 0.9375rem;
    color: var(--mm-text-light);
    margin-bottom: 0;
}

.mm-value-price {
    flex-shrink: 0;
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    color: var(--mm-text-light);
    text-decoration: line-through;
}

.mm-bonuses {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--mm-secondary);
}

.mm-bonuses-label {
    font-family: var(--mm-font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mm-secondary);
    margin-bottom: 16px;
}

.mm-value-total {
    margin-top: 40px;
    padding: 32px;
    background: var(--mm-background);
    border-radius: 8px;
    text-align: center;
}

.mm-value-total-label {
    font-size: 0.9375rem;
    color: var(--mm-text-light);
    margin-bottom: 8px;
}

.mm-value-total-old {
    font-family: var(--mm-font-headline);
    font-size: 1.5rem;
    color: var(--mm-text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.mm-value-total-new {
    font-family: var(--mm-font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mm-primary);
}

/* ========== GUARANTEE SECTION ========== */
.mm-guarantee {
    background: rgba(248, 246, 243, 0.78);
}

.mm-guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--mm-background-alt);
    border-radius: 12px;
    border: 2px solid var(--mm-success);
}

.mm-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.mm-guarantee-badge-icon {
    width: 32px;
    height: 32px;
    background: var(--mm-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mm-guarantee-badge-text {
    font-family: var(--mm-font-headline);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--mm-success);
}

.mm-guarantee-text {
    font-size: 1.0625rem;
    color: var(--mm-text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mm-guarantee-text:last-of-type {
    margin-bottom: 0;
}

.mm-guarantee-signature {
    font-family: var(--mm-font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--mm-text-light);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

/* ========== PRICING SECTION ========== */
.mm-pricing {
    background: rgba(13, 27, 42, 0.78);
    color: var(--mm-background);
}

.mm-pricing .mm-section-headline {
    color: var(--mm-background);
    text-align: center;
}

.mm-pricing-card {
    max-width: 520px;
    margin: 48px auto 0;
    background: var(--mm-background-alt);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mm-pricing-label {
    font-family: var(--mm-font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mm-secondary);
    margin-bottom: 8px;
}

.mm-pricing-name {
    font-family: var(--mm-font-headline);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--mm-primary);
    margin-bottom: 24px;
}

.mm-pricing-price {
    margin-bottom: 32px;
}

.mm-pricing-old {
    font-family: var(--mm-font-headline);
    font-size: 1.25rem;
    color: var(--mm-text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.mm-pricing-current {
    font-family: var(--mm-font-headline);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--mm-primary);
}

.mm-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.mm-pricing-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--mm-text-dark);
}

.mm-pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mm-success);
    font-weight: 700;
}

.mm-pricing-cta {
    width: 100%;
    margin-bottom: 16px;
}

.mm-pricing-secure {
    font-family: var(--mm-font-headline);
    font-size: 0.8125rem;
    color: var(--mm-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mm-pricing-deadline {
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    color: var(--mm-secondary);
    margin-top: 16px;
}

.mm-payment-plan {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-payment-plan-label {
    font-family: var(--mm-font-headline);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mm-text-light);
    margin-bottom: 8px;
}

.mm-payment-plan-price {
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--mm-primary);
    margin-bottom: 16px;
}

/* ========== FAQ SECTION ========== */
.mm-faq {
    background: rgba(255, 255, 255, 0.78);
}

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

.mm-faq-item {
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
}

.mm-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--mm-font-headline);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--mm-primary);
    transition: color 0.2s ease;
}

.mm-faq-question:hover {
    color: var(--mm-secondary);
}

.mm-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--mm-text-light);
    transition: transform 0.3s ease;
}

.mm-faq-item.active .mm-faq-icon {
    transform: rotate(45deg);
}

.mm-faq-answer {
    display: none;
    padding-bottom: 24px;
}

.mm-faq-item.active .mm-faq-answer {
    display: block;
}

.mm-faq-answer p {
    font-size: 1rem;
    color: var(--mm-text-dark);
    line-height: 1.7;
}

/* ========== FINAL CTA SECTION ========== */
.mm-final-cta {
    background: rgba(248, 246, 243, 0.75);
    text-align: center;
}

.mm-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

@media (max-width: 768px) {
    .mm-paths {
        grid-template-columns: 1fr;
    }
}

.mm-path {
    padding: 32px;
    border-radius: 8px;
}

.mm-path-1 {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.mm-path-2 {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mm-path h3 {
    font-family: var(--mm-font-headline);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mm-path-1 h3 {
    color: var(--mm-error);
}

.mm-path-2 h3 {
    color: var(--mm-success);
}

.mm-path p {
    font-size: 0.9375rem;
    color: var(--mm-text-dark);
    line-height: 1.6;
}

.mm-final-statement {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
    color: var(--mm-text-dark);
}

.mm-final-cta-buttons {
    margin-bottom: 20px;
}

.mm-final-meta {
    font-family: var(--mm-font-headline);
    font-size: 0.875rem;
    color: var(--mm-text-light);
}

/* ========== FOOTER ========== */
.mm-footer {
    background: rgba(13, 27, 42, 0.85);
    color: rgba(248, 246, 243, 0.8);
    padding: 48px 24px;
    text-align: center;
}

.mm-footer-brand {
    font-family: var(--mm-font-headline);
    font-size: 1rem;
    font-weight: 600;
    color: var(--mm-background);
    margin-bottom: 16px;
}

.mm-footer-contact {
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.mm-footer-contact a {
    color: var(--mm-secondary);
    text-decoration: none;
}

.mm-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.mm-footer-links a {
    font-size: 0.875rem;
    color: rgba(248, 246, 243, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mm-footer-links a:hover {
    color: var(--mm-background);
}

.mm-footer-copy {
    font-size: 0.8125rem;
    color: rgba(248, 246, 243, 0.5);
}

/* ========== MOBILE FLOATING CTA ========== */
.mm-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 24px;
    background: var(--mm-background-alt);
    border-top: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mm-mobile-cta {
        display: block;
    }
    
    .mm-mobile-cta .mm-btn {
        width: 100%;
    }
    
    /* Add padding to body to account for floating CTA */
    .meta-mastery-page main {
        padding-bottom: 80px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mm-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.mm-animate-delay-1 { animation-delay: 0.1s; }
.mm-animate-delay-2 { animation-delay: 0.2s; }
.mm-animate-delay-3 { animation-delay: 0.3s; }
.mm-animate-delay-4 { animation-delay: 0.4s; }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
.meta-mastery-page ::selection {
    background: var(--mm-secondary);
    color: var(--mm-primary);
}

/* ========== UTILITY CLASSES ========== */
.mm-text-center { text-align: center; }
.mm-mt-0 { margin-top: 0; }
.mm-mb-0 { margin-bottom: 0; }
