/*
Theme Name: Modern Pixel Child
Theme URI: https://modern-pixel.com
Description: Modern Pixel Design System - Midnight Raspberry v3.0
Author: Modern Pixel
Author URI: https://modern-pixel.com
Template: generatepress 
Version: 3.0.3
*/

/* =============================================================================
   MODERN PIXEL DESIGN SYSTEM v3.0 - CONSOLIDATED
   Complete CSS: Design System + Header/Footer + All Page Components
   
   TABLE OF CONTENTS:
   1.  CSS Reset & Base
   2.  Design Tokens
   3.  Base Typography
   4.  Layout - Sections & Containers
   5.  Decorative Background Shapes
   6.  Grid System
   7.  Buttons
   8.  Cards
   9.  Typography Components
   10. Pain Points
   11. Benefits
   12. Stats Row
   13. Step Circles
   14. Success Cards
   15. Pricing Cards & Toggle
   16. Case Studies
   17. Process Timeline
   18. FAQ
   19. CTA Section
   20. Header
   21. Footer
   22. WPForms
   23. GeneratePress Overrides
   24. Utility Classes
   25. Responsive Adjustments
   26. Accessibility
   27. Print Styles
   28. 404 Page
   ============================================================================= */

/* =============================================================================
   1. CSS RESET & BASE
   ============================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* =============================================================================
   2. DESIGN TOKENS
   ============================================================================= */

:root {
    /* === PRIMARY: MIDNIGHT BLUE === */
    --brand-blue-50: #e8f0fa;
    --brand-blue-100: #c5d9f2;
    --brand-blue-200: #9dc0e8;
    --brand-blue-300: #75a7de;
    --brand-blue-400: #5691d6;
    --brand-blue-500: #3d7dce;
    --brand-blue-600: #2d6ab8;
    --brand-blue-700: #1D4F91;
    --brand-blue-800: #153d70;
    --brand-blue-900: #0d2b4f;

    /* === ACCENT: RASPBERRY === */
    --brand-raspberry-50: #fce8f2;
    --brand-raspberry-100: #f8c5dd;
    --brand-raspberry-200: #f29dc4;
    --brand-raspberry-300: #eb75aa;
    --brand-raspberry-400: #e55695;
    --brand-raspberry-500: #C1188B;
    --brand-raspberry-600: #a8157a;
    --brand-raspberry-700: #8f1268;
    --brand-raspberry-800: #760f57;
    --brand-raspberry-900: #5d0c45;

    /* === DARK: NAVY === */
    --brand-navy-500: #384b6e;
    --brand-navy-600: #283b5b;
    --brand-navy-700: #1A2B4B;
    --brand-navy-800: #14223b;
    --brand-navy-900: #0e192b;
    --brand-navy-950: #080d16;

    /* === NEUTRAL: SLATE === */
    --brand-slate-50: #f8fafc;
    --brand-slate-100: #f1f5f9;
    --brand-slate-200: #e2e8f0;
    --brand-slate-300: #cbd5e1;
    --brand-slate-400: #94a3b8;
    --brand-slate-500: #64748b;
    --brand-slate-600: #475569;
    --brand-slate-700: #334155;
    --brand-slate-800: #1e293b;
    --brand-slate-900: #0f172a;

    /* === SEMANTIC COLORS === */
    --color-primary: var(--brand-blue-700);
    --color-primary-light: var(--brand-blue-50);
    --color-accent: var(--brand-raspberry-500);
    --color-accent-light: var(--brand-raspberry-50);
    --color-accent-hover: var(--brand-raspberry-600);
    --color-text: var(--brand-slate-800);
    --color-text-secondary: var(--brand-slate-600);
    --color-text-muted: var(--brand-slate-500);
    --color-background: #ffffff;
    --color-dark-bg: var(--brand-navy-700);
    --color-blue-bg: var(--brand-blue-50);

    /* === TYPOGRAPHY === */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.3;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;

    /* === SPACING (8pt Grid) === */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    --space-16: 6rem;
    --space-20: 8rem;
    --space-24: 10rem;

    /* === BORDERS === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* === SHADOWS (Multi-layer with blue tint) === */
    --shadow-sm: 
        0 1px 2px rgba(29, 79, 145, 0.04),
        0 1px 3px rgba(29, 79, 145, 0.06);
    
    --shadow-md: 
        0 2px 4px rgba(29, 79, 145, 0.03),
        0 4px 8px rgba(29, 79, 145, 0.06),
        0 8px 16px rgba(29, 79, 145, 0.06);
    
    --shadow-lg: 
        0 4px 8px rgba(29, 79, 145, 0.04),
        0 8px 16px rgba(29, 79, 145, 0.06),
        0 16px 32px rgba(29, 79, 145, 0.08);
    
    --shadow-xl: 
        0 8px 16px rgba(29, 79, 145, 0.04),
        0 16px 32px rgba(29, 79, 145, 0.08),
        0 32px 64px rgba(29, 79, 145, 0.12);

    /* === GLOW EFFECTS === */
    --shadow-glow: 
        0 4px 14px rgba(193, 24, 139, 0.35),
        0 8px 25px rgba(193, 24, 139, 0.25);
    
    --shadow-glow-hover: 
        0 6px 20px rgba(193, 24, 139, 0.4),
        0 12px 35px rgba(193, 24, 139, 0.3);

    --shadow-glow-blue:
        0 4px 14px rgba(29, 79, 145, 0.3),
        0 8px 20px rgba(29, 79, 145, 0.2);

    /* === GRADIENTS === */
    --gradient-primary: linear-gradient(135deg, #C1188B 0%, #a8157a 100%);
    --gradient-secondary: linear-gradient(135deg, #2d6ab8 0%, #1D4F91 100%);
    --gradient-dark: linear-gradient(180deg, #1A2B4B 0%, #0e192b 100%);
    --gradient-dark-radial: radial-gradient(ellipse at top, #283b5b 0%, #1A2B4B 50%, #0e192b 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-blue-subtle: linear-gradient(135deg, var(--brand-blue-50) 0%, #ffffff 100%);
    --gradient-raspberry-subtle: linear-gradient(135deg, var(--brand-raspberry-50) 0%, #ffffff 100%);

    /* === TRANSITIONS === */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================================
   3. BASE TYPOGRAPHY
   ============================================================================= */

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--color-text);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    letter-spacing: var(--tracking-tight);
}

h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
}

h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
}

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

p:last-child {
    margin-bottom: 0;
}

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

a:hover {
    color: var(--brand-blue-800);
}

/* =============================================================================
   4. LAYOUT - SECTIONS & CONTAINERS
   ============================================================================= */

.mp-section {
    position: relative;
    padding: var(--space-16) 0;
    overflow: hidden;
}

.mp-section--blue {
    background: var(--gradient-blue-subtle);
}

.mp-section--dark {
    background: var(--gradient-dark-radial);
    color: #ffffff;
}

.mp-section--dark h1,
.mp-section--dark h2,
.mp-section--dark h3,
.mp-section--dark h4 {
    color: #ffffff;
}

.mp-section--dark p {
    color: var(--brand-slate-300);
}

.mp-section--dark a:not(.mp-btn) {
    color: var(--brand-raspberry-300);
}

.mp-section--dark a:not(.mp-btn):hover {
    color: var(--brand-raspberry-200);
}

/* Hero Section */
.mp-hero {
    padding: var(--space-24) 0 var(--space-16);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-hero .mp-container {
    width: 100%;
    text-align: center;
}

.mp-hero h1,
.mp-hero .mp-lead,
.mp-hero .mp-eyebrow,
.mp-hero p {
    text-align: center;
}

.mp-hero .mp-cta-buttons {
    justify-content: center;
}

/* Force hero centering regardless of wrapper structure */
.mp-hero .mp-geo-overlay,
.mp-hero .mp-geo-overlay .mp-container {
    text-align: center;
}

.mp-hero .mp-geo-overlay .mp-container * {
    margin-left: auto;
    margin-right: auto;
}

.mp-hero .mp-geo-overlay h1,
.mp-hero .mp-geo-overlay p,
.mp-hero .mp-geo-overlay .mp-eyebrow,
.mp-hero .mp-geo-overlay .mp-lead {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
   CRITICAL: HERO CENTERING OVERRIDES FOR GENERATEPRESS
   These rules use !important to override GP defaults
   ============================================================================= */

/* Target hero inside entry-content (WordPress wrapper) */
.entry-content .mp-hero,
.entry-content .mp-section.mp-hero,
article .mp-hero,
.site-main .mp-hero,
.content-area .mp-hero {
    text-align: center !important;
    justify-content: center !important;
}

.entry-content .mp-hero .mp-container,
.entry-content .mp-hero .mp-geo-overlay,
.entry-content .mp-hero .mp-geo-overlay .mp-container,
article .mp-hero .mp-container,
.site-main .mp-hero .mp-container {
    text-align: center !important;
}

.entry-content .mp-hero h1,
.entry-content .mp-hero h2,
.entry-content .mp-hero h3,
.entry-content .mp-hero p,
.entry-content .mp-hero .mp-eyebrow,
.entry-content .mp-hero .mp-lead,
article .mp-hero h1,
article .mp-hero p,
.site-main .mp-hero h1,
.site-main .mp-hero p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.entry-content .mp-hero .mp-cta-buttons,
article .mp-hero .mp-cta-buttons,
.site-main .mp-hero .mp-cta-buttons {
    justify-content: center !important;
    display: flex !important;
}

.entry-content .mp-hero .mp-stats-row,
article .mp-hero .mp-stats-row {
    justify-content: center !important;
}

/* NUCLEAR: Force hero flex centering regardless of other rules */
.mp-hero {
    justify-content: center !important;
}

/* Ultra-high specificity for hero centering */
html body .site .site-content .content-area .site-main article .entry-content .mp-hero,
html body .mp-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Section-level catch-all for any .mp-hero */
section.mp-hero,
div.mp-hero,
.mp-section.mp-hero {
    justify-content: center !important;
}

/* Also target mp-section-centered inside entry-content */
.entry-content .mp-section-centered,
.entry-content .mp-section-centered h1,
.entry-content .mp-section-centered h2,
.entry-content .mp-section-centered h3,
.entry-content .mp-section-centered p,
.entry-content .mp-section-centered .mp-eyebrow,
.entry-content .mp-section-centered .mp-lead,
article .mp-section-centered,
article .mp-section-centered h1,
article .mp-section-centered h2,
article .mp-section-centered p {
    text-align: center !important;
}

/* Container */
.mp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 2;
}

.mp-section-centered {
    text-align: center;
}

.mp-section-centered h1,
.mp-section-centered h2,
.mp-section-centered h3,
.mp-section-centered p,
.mp-section-centered .mp-eyebrow,
.mp-section-centered .mp-lead {
    text-align: center;
}

.mp-section-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mp-section-medium {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
   5. DECORATIVE BACKGROUND SHAPES
   ============================================================================= */

/* Light section shapes */
.mp-shapes-preset--light {
    position: relative;
}

.mp-shapes-preset--light::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 79, 145, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.mp-shapes-preset--light::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 24, 139, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Dark section shapes */
.mp-shapes-preset--dark {
    position: relative;
}

.mp-shapes-preset--dark::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 79, 145, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.mp-shapes-preset--dark::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 24, 139, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Geometric overlay */
.mp-geo-overlay {
    position: relative;
    z-index: 1;
}

.mp-geo-overlay::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.mp-geo-overlay::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

/* Hide decorative elements on mobile */
@media (max-width: 768px) {
    .mp-shapes-preset--light::before,
    .mp-shapes-preset--light::after,
    .mp-shapes-preset--dark::before,
    .mp-shapes-preset--dark::after,
    .mp-geo-overlay::before,
    .mp-geo-overlay::after {
        display: none;
    }
}

/* =============================================================================
   6. GRID SYSTEM
   ============================================================================= */

.mp-grid {
    display: grid;
    gap: var(--space-6);
}

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

.mp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.mp-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .mp-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mp-grid--2,
    .mp-grid--3,
    .mp-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   7. BUTTONS
   ============================================================================= */

.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-family);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.mp-btn--primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.mp-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-hover);
    color: #ffffff;
}

.mp-btn--secondary {
    background: var(--gradient-secondary);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.mp-btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.mp-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.mp-btn--outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.mp-btn--outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mp-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.mp-btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.mp-btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

/* =============================================================================
   8. CARDS
   ============================================================================= */

.mp-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Card with gradient top border */
.mp-card--gradient-border {
    border-top: 4px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--brand-blue-700), var(--brand-raspberry-500)) border-box;
    border-top: 4px solid transparent;
}

/* Card with left accent border */
.mp-card--accent-border {
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.mp-card--accent-border:hover {
    border-left-color: var(--color-accent);
}

/* Card with raspberry accent */
.mp-card--raspberry-border {
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* Featured card with glow */
.mp-card--featured {
    background: #ffffff;
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.mp-card--featured:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-glow-hover);
}

/* Card in dark sections */
.mp-section--dark .mp-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mp-section--dark .mp-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card elements */
.mp-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    background: var(--gradient-secondary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

.mp-card__icon svg {
    width: 28px;
    height: 28px;
}

.mp-card__icon--raspberry {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.mp-card__emoji {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    display: block;
}

.mp-card__title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.mp-card__subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    color: var(--color-primary);
}

.mp-card__text {
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.mp-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-weight: var(--font-semibold);
    color: var(--color-accent);
    transition: all var(--transition-fast);
}

.mp-card__link:hover {
    color: var(--color-accent-hover);
    gap: var(--space-3);
}

/* Service card enhancements */
.mp-card--service {
    text-align: center;
    padding: var(--space-8);
}

.mp-card--service .mp-card__icon {
    margin: 0 auto var(--space-5);
}

.mp-card--service:hover .mp-card__icon {
    transform: scale(1.1);
    transition: transform var(--transition-bounce);
}

/* Industry card */
.mp-card--industry {
    text-align: center;
    padding: var(--space-5);
    text-decoration: none;
    display: block;
}

.mp-card--industry .mp-card__emoji {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-4);
    background: var(--brand-blue-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    transition: all var(--transition-base);
}

.mp-card--industry:hover .mp-card__emoji {
    background: var(--brand-raspberry-50);
    transform: scale(1.1);
}

.mp-card--industry h4 {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.mp-card--industry:hover h4 {
    color: var(--color-accent);
}

/* =============================================================================
   9. TYPOGRAPHY COMPONENTS
   ============================================================================= */

.mp-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.mp-section--dark .mp-eyebrow {
    color: var(--brand-raspberry-300);
}

.mp-lead {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
}

.mp-section--dark .mp-lead {
    color: var(--brand-slate-300);
}

.mp-highlight {
    color: var(--color-accent);
    font-weight: var(--font-semibold);
}

.mp-highlight--blue {
    color: var(--color-primary);
}

.mp-quote {
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-text-secondary);
    padding: var(--space-6);
    border-left: 4px solid var(--color-accent);
    background: var(--brand-raspberry-50);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: var(--space-8) 0;
}

/* =============================================================================
   10. PAIN POINTS
   ============================================================================= */

.mp-pain-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto;
}

.mp-pain-point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brand-slate-100);
    transition: all var(--transition-base);
}

.mp-pain-point:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--brand-raspberry-200);
}

.mp-pain-point__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--brand-raspberry-50);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
}

.mp-pain-point__text {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin: 0;
    padding-top: var(--space-2);
}

/* =============================================================================
   11. BENEFITS
   ============================================================================= */

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

.mp-benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mp-benefit:hover {
    background: var(--brand-blue-50);
}

.mp-benefit__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--gradient-secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    box-shadow: var(--shadow-sm);
}

.mp-benefit__text {
    font-size: var(--text-base);
    color: var(--color-text);
    margin: 0;
    padding-top: 4px;
}

/* Benefits grid layout */
.mp-benefits-grid {
    text-align: left;
}

.mp-benefits-grid .mp-benefit {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(29, 79, 145, 0.1);
}

.mp-benefits-grid .mp-benefit:hover {
    background: #ffffff;
    border-color: var(--brand-blue-200);
    box-shadow: var(--shadow-md);
}

/* =============================================================================
   12. STATS ROW
   ============================================================================= */

.mp-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.mp-stat {
    text-align: center;
    padding: var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    min-width: 180px;
    border-top: 4px solid var(--color-primary);
    transition: all var(--transition-base);
}

.mp-stat:nth-child(2) {
    border-top-color: var(--color-accent);
}

.mp-stat:nth-child(3) {
    border-top-color: var(--brand-blue-500);
}

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

.mp-stat__number {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
    line-height: 1.1;
}

.mp-stat:nth-child(2) .mp-stat__number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.mp-stat__label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin: 0;
}

/* Dark section stats */
.mp-section--dark .mp-stat {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--brand-raspberry-400);
}

.mp-section--dark .mp-stat:nth-child(1) {
    border-top-color: var(--brand-blue-400);
}

.mp-section--dark .mp-stat:nth-child(3) {
    border-top-color: var(--brand-raspberry-300);
}

.mp-section--dark .mp-stat__number {
    background: linear-gradient(135deg, #ffffff 0%, var(--brand-slate-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.mp-section--dark .mp-stat__label {
    color: var(--brand-slate-400);
}

/* =============================================================================
   13. STEP CIRCLES
   ============================================================================= */

.mp-steps {
    display: grid;
    gap: var(--space-8);
    counter-reset: none;
}

.mp-steps--horizontal {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .mp-steps--horizontal {
        grid-template-columns: 1fr;
    }
}

.mp-step {
    text-align: center;
    position: relative;
}

.mp-step-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-secondary);
    color: #ffffff;
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: var(--shadow-glow-blue);
    position: relative;
    z-index: 2;
}

/* Hide any pseudo-element counters */
.mp-step-circle::before {
    display: none;
}

.mp-step:nth-child(2) .mp-step-circle {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.mp-step:nth-child(3) .mp-step-circle {
    background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-blue-700) 100%);
}

.mp-step__title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    color: #ffffff;
}

.mp-step__text {
    color: var(--brand-slate-300);
    max-width: 280px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* Connector lines between steps */
.mp-steps--horizontal .mp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue-400), var(--brand-raspberry-400));
    z-index: 1;
}

@media (max-width: 768px) {
    .mp-steps--horizontal .mp-step::after {
        display: none;
    }
}

/* =============================================================================
   14. SUCCESS CARDS
   ============================================================================= */

.mp-success-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border-left: 4px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(180deg, var(--brand-blue-700), var(--brand-raspberry-500)) border-box;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mp-success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue-700), var(--brand-raspberry-500));
}

.mp-success-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: var(--shadow-xl);
}

.mp-success-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--brand-blue-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.mp-success-card:nth-child(2) .mp-success-card__icon {
    background: var(--brand-raspberry-50);
    color: var(--color-accent);
}

.mp-success-card:nth-child(3) .mp-success-card__icon {
    background: var(--brand-blue-100);
    color: var(--brand-blue-600);
}

.mp-success-card:nth-child(4) .mp-success-card__icon {
    background: var(--brand-raspberry-100);
    color: var(--brand-raspberry-600);
}

.mp-success-card__title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.mp-success-card__text {
    color: var(--color-text-secondary);
    margin: 0;
}

/* =============================================================================
   15. PRICING CARDS & TOGGLE
   ============================================================================= */

/* Pricing Toggle */
.mp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mp-pricing-toggle__label {
    font-size: 15px;
    font-weight: var(--font-medium);
    color: var(--brand-slate-500);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-pricing-toggle__label.is-active {
    color: var(--brand-slate-800);
    font-weight: var(--font-semibold);
}

.mp-pricing-toggle__badge {
    background: var(--brand-raspberry-100);
    color: var(--brand-raspberry-600);
    font-size: 11px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

.mp-pricing-toggle__switch {
    position: relative;
    width: 56px;
    height: 32px;
    background: var(--brand-slate-200);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background 0.3s ease;
}

.mp-pricing-toggle__switch:hover {
    background: var(--brand-slate-300);
}

.mp-pricing-toggle__switch.is-active {
    background: var(--brand-raspberry-500);
}

.mp-pricing-toggle__slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mp-pricing-toggle__switch.is-active .mp-pricing-toggle__slider {
    transform: translateX(24px);
}

/* Pricing Cards */
.mp-pricing-grid {
    align-items: stretch;
}

.mp-card--pricing {
    text-align: center;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mp-card--pricing.mp-card--featured {
    padding-top: 56px;
}

.mp-pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--gradient-primary);
    color: #ffffff;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-glow);
}

.mp-pricing-tier {
    font-size: 14px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue-700);
    margin-bottom: 8px;
}

.mp-card--featured .mp-pricing-tier {
    color: var(--brand-raspberry-600);
}

.mp-pricing-amount {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
    transition: opacity 0.2s ease;
}

.mp-card--featured .mp-pricing-amount {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.mp-pricing-term {
    font-size: 14px;
    color: var(--brand-slate-500);
    margin-bottom: 16px;
}

.mp-pricing-for {
    font-size: 15px;
    color: var(--brand-slate-600);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--brand-slate-100);
}

.mp-card--featured .mp-pricing-for {
    border-bottom-color: var(--brand-raspberry-100);
}

.mp-pricing-timeline {
    font-size: 13px;
    color: var(--brand-slate-500);
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--brand-slate-100);
}

.mp-card--pricing .mp-btn {
    width: 100%;
}

.mp-card--pricing .mp-feature-list {
    text-align: left;
    flex-grow: 1;
}

.mp-card--pricing .mp-feature-list li {
    padding: 10px 0;
    font-size: 14px;
}

.mp-feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
    text-align: left;
    flex-grow: 1;
}

.mp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--brand-slate-100);
}

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

.mp-feature-list__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--brand-blue-100);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
}

.mp-card--featured .mp-feature-list__icon {
    background: var(--brand-raspberry-100);
    color: var(--color-accent);
}

/* Pricing Note */
.mp-pricing-note {
    text-align: center;
    padding: 24px;
    background: var(--brand-slate-50);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mp-pricing-note p {
    margin: 0;
    font-size: 15px;
    color: var(--brand-slate-600);
}

.mp-pricing-note a {
    color: var(--brand-raspberry-500);
    font-weight: var(--font-semibold);
}

.mp-pricing-note a:hover {
    color: var(--brand-raspberry-600);
}

/* =============================================================================
   16. CASE STUDIES
   ============================================================================= */

.mp-case-studies {
    gap: 32px;
}

.mp-case-study {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
}

.mp-case-study__header {
    margin-bottom: 24px;
}

.mp-case-study__industry {
    font-size: 13px;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-raspberry-300);
    margin-bottom: 8px;
    display: block;
}

.mp-case-study__title {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: #ffffff;
    margin: 0;
}

.mp-case-study__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .mp-case-study__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.mp-case-study__stat {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.mp-case-study__stat-value {
    display: block;
    font-size: 32px;
    font-weight: var(--font-extrabold);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.mp-case-study__stat-label {
    display: block;
    font-size: 12px;
    color: var(--brand-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mp-case-study__stat-change {
    display: block;
    font-size: 12px;
    font-weight: var(--font-semibold);
    color: #4ade80;
    margin-top: 4px;
}

.mp-case-study__timeline {
    font-size: 13px;
    color: var(--brand-slate-400);
    margin: 0;
}

.mp-case-study__quote {
    font-size: 15px;
    font-style: italic;
    color: var(--brand-slate-300);
    line-height: 1.6;
    margin: 20px 0 0 0;
    padding: 20px;
    border-left: 3px solid var(--brand-raspberry-400);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.mp-case-study__quote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 13px;
    font-weight: var(--font-semibold);
    color: var(--brand-slate-400);
}

/* =============================================================================
   17. PROCESS TIMELINE
   ============================================================================= */

.mp-process {
    max-width: 800px;
    margin: 0 auto;
}

.mp-process-phase {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.mp-process-phase:not(:last-child) {
    border-bottom: 1px solid var(--brand-slate-200);
}

.mp-process-phase:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px;
    bottom: -24px;
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--brand-blue-300), var(--brand-raspberry-300));
    z-index: 1;
}

.mp-process-phase__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: #ffffff;
    font-size: 24px;
    font-weight: var(--font-extrabold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(29, 79, 145, 0.3);
    position: relative;
    z-index: 2;
}

.mp-process-phase:nth-child(2) .mp-process-phase__number {
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(193, 24, 139, 0.3);
}

.mp-process-phase:nth-child(3) .mp-process-phase__number {
    background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-blue-700) 100%);
}

.mp-process-phase__content {
    flex: 1;
}

.mp-process-phase__title {
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--brand-slate-800);
    margin-bottom: 4px;
}

.mp-process-phase__duration {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--brand-raspberry-500);
    margin-bottom: 16px;
}

.mp-process-phase__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-process-phase__list li {
    position: relative;
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 15px;
    color: var(--brand-slate-600);
    line-height: 1.5;
}

.mp-process-phase__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue-500);
    font-weight: var(--font-bold);
}

@media (max-width: 600px) {
    .mp-process-phase {
        flex-direction: column;
        gap: 20px;
    }
    
    .mp-process-phase:not(:last-child)::after {
        display: none;
    }
    
    .mp-process-phase__number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* =============================================================================
   18. FAQ
   ============================================================================= */

.mp-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp-faq-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(29, 79, 145, 0.06);
    border: 1px solid var(--brand-slate-100);
    transition: all 0.2s ease;
}

.mp-faq-item:hover {
    box-shadow: 0 4px 16px rgba(29, 79, 145, 0.1);
    border-color: var(--brand-blue-200);
}

.mp-faq-item__question {
    font-size: 17px;
    font-weight: var(--font-semibold);
    color: var(--brand-slate-800);
    margin-bottom: 12px;
    line-height: 1.4;
}

.mp-faq-item__answer {
    font-size: 15px;
    color: var(--brand-slate-600);
    line-height: 1.7;
    margin: 0;
}

.mp-faq-item__answer a {
    color: var(--brand-raspberry-500);
    font-weight: var(--font-medium);
}

.mp-faq-item__answer a:hover {
    color: var(--brand-raspberry-600);
}

/* =============================================================================
   19. CTA SECTION
   ============================================================================= */

.mp-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.mp-cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================================
   20. HEADER
   ============================================================================= */

.mp-header {
    background: var(--brand-navy-700);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mp-header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mp-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mp-header__logo img {
    height: 40px;
    width: auto;
}

.mp-header__site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: var(--font-bold);
}

/* Navigation */
.mp-header__nav {
    display: flex;
    align-items: center;
}

.mp-header__menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.mp-header__menu li {
    margin: 0;
}

.mp-header__menu li a {
    color: var(--brand-slate-300);
    font-size: 14px;
    font-weight: var(--font-medium);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: color var(--transition-fast);
    border-radius: var(--radius-md);
}

.mp-header__menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.mp-header__menu li.current-menu-item > a,
.mp-header__menu li.current-page-ancestor > a {
    color: var(--brand-raspberry-300);
}

/* CTA Button in Menu */
.mp-header__menu li.menu-cta-button a {
    background: var(--gradient-primary);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.mp-header__menu li.menu-cta-button a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
    background: var(--gradient-primary);
}

/* Dropdown Menus */
.mp-header__menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--brand-navy-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    min-width: 200px;
    z-index: 9999;
}

.mp-header__menu li:hover > ul {
    display: block;
}

.mp-header__menu li ul li a {
    padding: 12px 20px;
    font-size: 13px;
    border-radius: 0;
}

.mp-header__menu li ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile Toggle */
.mp-header__toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
}

.mp-header__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Styles */
@media (max-width: 900px) {
    .mp-header__container {
        padding: 12px 20px;
    }
    
    .mp-header__toggle {
        display: block;
    }
    
    .mp-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-navy-800);
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .mp-header__nav.is-open {
        display: block;
    }
    
    .mp-header__menu {
        flex-direction: column;
        gap: 0;
    }
    
    .mp-header__menu li {
        width: 100%;
    }
    
    .mp-header__menu li a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mp-header__menu li.menu-cta-button {
        margin-top: 16px;
    }
    
    .mp-header__menu li.menu-cta-button a {
        text-align: center;
        display: block;
    }
}

/* =============================================================================
   21. FOOTER
   ============================================================================= */

.mp-footer {
    background: var(--gradient-dark);
    color: var(--brand-slate-300);
}

.mp-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 32px;
}

.mp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

/* Footer Brand */
.mp-footer__logo {
    margin-bottom: 20px;
}

.mp-footer__logo img {
    height: 40px;
    width: auto;
}

.mp-footer__site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: var(--font-bold);
}

.mp-footer__tagline {
    font-size: 15px;
    line-height: 1.7;
    color: var(--brand-slate-400);
    margin-bottom: 24px;
}

.mp-footer__social {
    display: flex;
    gap: 12px;
}

.mp-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-slate-400);
    transition: all 0.2s ease;
}

.mp-footer__social a:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Nav Columns */
.mp-footer__nav h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.mp-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-footer__nav ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-footer__nav ul li svg {
    flex-shrink: 0;
    color: var(--brand-slate-500);
}

.mp-footer__nav a {
    color: var(--brand-slate-400);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mp-footer__nav a:hover {
    color: var(--brand-raspberry-300);
}

.mp-footer__contact span {
    color: var(--brand-slate-400);
    font-size: 14px;
}

/* Footer CTA Button */
.mp-footer__cta {
    margin-top: 20px;
    display: inline-flex;
    padding: 12px 24px;
    font-size: 13px;
}

/* Footer Bottom */
.mp-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mp-footer__copyright {
    font-size: 14px;
    color: var(--brand-slate-500);
    margin: 0;
}

.mp-footer__legal {
    display: flex;
    gap: 32px;
}

.mp-footer__legal a {
    font-size: 14px;
    color: var(--brand-slate-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mp-footer__legal a:hover {
    color: var(--brand-slate-400);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .mp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .mp-footer__container {
        padding: 48px 24px 24px;
    }
    
    .mp-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mp-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mp-footer__legal {
        justify-content: center;
    }
}

/* =============================================================================
   22. WPFORMS
   ============================================================================= */

.wpforms-container {
    max-width: 100%;
}

.wpforms-field-label {
    font-weight: var(--font-semibold);
    color: var(--brand-slate-800);
    margin-bottom: 8px;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="url"],
.wpforms-field textarea,
.wpforms-field select {
    border: 1px solid var(--brand-slate-200);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 16px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(29, 79, 145, 0.1);
    outline: none;
}

.wpforms-submit-container button[type="submit"],
.wpforms-submit {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.wpforms-submit-container button[type="submit"]:hover,
.wpforms-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
}

/* =============================================================================
   23. GENERATEPRESS OVERRIDES
   ============================================================================= */

/* Remove GP default padding */
.site-content,
.content-area {
    padding: 0;
}

/* Full width pages */
.page .site-main {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Hide default entry header/footer */
.entry-header,
.entry-footer {
    display: none;
}

/* CRITICAL: Remove any default text alignment from GP wrappers */
.entry-content {
    text-align: inherit;
}

/* Ensure our sections control their own alignment */
.entry-content .mp-section,
.entry-content .mp-hero,
article .mp-section,
article .mp-hero {
    text-align: inherit;
}

/* Force centered sections to actually center */
.entry-content .mp-section-centered {
    text-align: center !important;
}

/* Link colors in content */
.entry-content a:not(.wp-block-button__link):not(.mp-btn) {
    color: var(--color-primary);
    text-decoration: none;
}

.entry-content a:not(.wp-block-button__link):not(.mp-btn):hover {
    color: var(--brand-blue-800);
}

/* Dark section link colors */
.mp-section--dark .entry-content a:not(.mp-btn) {
    color: var(--brand-raspberry-300);
}

.mp-section--dark .entry-content a:not(.mp-btn):hover {
    color: var(--brand-raspberry-200);
}

/* =============================================================================
   24. UTILITY CLASSES
   ============================================================================= */

/* Margins */
.mp-mb-0 { margin-bottom: 0; }
.mp-mb-2 { margin-bottom: var(--space-2); }
.mp-mb-4 { margin-bottom: var(--space-4); }
.mp-mb-6 { margin-bottom: var(--space-6); }
.mp-mb-8 { margin-bottom: var(--space-8); }
.mp-mb-10 { margin-bottom: var(--space-10); }
.mp-mb-12 { margin-bottom: var(--space-12); }

.mp-mt-4 { margin-top: var(--space-4); }
.mp-mt-6 { margin-top: var(--space-6); }
.mp-mt-8 { margin-top: var(--space-8); }
.mp-mt-10 { margin-top: var(--space-10); }
.mp-mt-12 { margin-top: var(--space-12); }

/* Text alignment */
.mp-text-center { text-align: center; }
.mp-text-left { text-align: left; }

/* Text colors */
.mp-text-muted { color: var(--color-text-muted); }
.mp-text-muted-light { color: var(--brand-slate-400); }
.mp-text-accent { color: var(--color-accent); }
.mp-text-primary { color: var(--color-primary); }

/* Display */
.mp-hidden { display: none; }

/* =============================================================================
   25. RESPONSIVE ADJUSTMENTS
   ============================================================================= */

@media (max-width: 900px) {
    .mp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mp-card--pricing.mp-card--featured {
        order: -1;
    }
    
    .mp-case-studies {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
    
    .mp-section {
        padding: var(--space-12) 0;
    }
    
    .mp-hero {
        padding: var(--space-16) 0 var(--space-12);
        min-height: auto;
    }
    
    .mp-container {
        padding: 0 var(--space-4);
    }
    
    .mp-stats-row {
        gap: var(--space-4);
    }
    
    .mp-stat {
        min-width: 140px;
        padding: var(--space-4);
    }
    
    .mp-stat__number {
        font-size: var(--text-3xl);
    }
    
    .mp-step-circle {
        width: 64px;
        height: 64px;
        font-size: var(--text-2xl);
    }
    
    .mp-btn--lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
}

@media (max-width: 600px) {
    .mp-pricing-toggle {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .mp-pricing-amount {
        font-size: 40px;
    }
    
    .mp-case-study__stat-value {
        font-size: 28px;
    }
}

/* =============================================================================
   26. ACCESSIBILITY
   ============================================================================= */

/* Focus states */
.mp-btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    z-index: 9999;
    font-weight: var(--font-semibold);
}

.skip-link:focus {
    top: var(--space-4);
}

/* =============================================================================
   27. PRINT STYLES
   ============================================================================= */

@media print {
    .mp-section--dark {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .mp-btn {
        border: 1px solid #000000 !important;
    }
    
    .mp-shapes-preset--light::before,
    .mp-shapes-preset--light::after,
    .mp-shapes-preset--dark::before,
    .mp-shapes-preset--dark::after {
        display: none !important;
    }
    
    .mp-header,
    .mp-footer {
        display: none !important;
    }
}

/* =============================================================================
   28. 404 PAGE
   ============================================================================= */

/* Force 404 page to use full width */
.error404 .site-main {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.error404 .site-content,
.error404 .content-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* 404 Section - break out of any container */
.mp-404 {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-6);
}

.mp-404__content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mp-404__number {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: var(--font-extrabold);
    line-height: 1;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--brand-raspberry-400) 0%, var(--brand-blue-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

.mp-404__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: #ffffff;
    margin-bottom: var(--space-4);
}

.mp-404__text {
    font-size: var(--text-lg);
    color: var(--brand-slate-300);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

.mp-404__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
}

/* "Or try one of these pages" helper text */
.mp-404__helper-text {
    color: var(--brand-slate-400);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    margin-top: var(--space-6);
}

/* Navigation links container */
.mp-404__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove bullets from list items (if using ul/li) */
.mp-404__nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mp-404__nav li::before,
.mp-404__nav li::marker {
    display: none !important;
    content: none !important;
}

/* Navigation link styling - raspberry pill buttons */
.mp-404__nav a {
    color: var(--brand-raspberry-300);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    border: 1px solid rgba(193, 24, 139, 0.3);
    background: rgba(193, 24, 139, 0.1);
    text-decoration: none;
    display: inline-block;
}

.mp-404__nav a:hover {
    color: #ffffff;
    background: rgba(193, 24, 139, 0.25);
    border-color: rgba(193, 24, 139, 0.5);
    transform: translateY(-2px);
}

/* 404 Responsive */
@media (max-width: 768px) {
    .mp-404 {
        min-height: 60vh;
        padding: var(--space-12) var(--space-4);
    }
    
    .mp-404__title {
        font-size: var(--text-3xl);
    }
    
    .mp-404__text {
        font-size: var(--text-base);
    }
    
    .mp-404__nav {
        gap: var(--space-2);
    }
    
    .mp-404__nav a {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
}