/**
 * JD Stride B2B Professional Theme Styles - ENHANCED VERSION
 * WordPress-ready CSS for custom theme development
 * 
 * VERSION: 2.0 (January 2026)
 * INCLUDES: Main site + Landing page conversion patterns
 * 
 * Usage: Add to your theme's style.css or custom CSS area
 * Compatible with: Gutenberg blocks, page builders, custom themes
 */

/* ========================================
   CSS VARIABLES (Color Scheme & Fonts)
   ======================================== */

:root {
    /* Primary Colors */
    --primary-navy: #0A1628;
    --accent-blue: #2E5BFF;
    --accent-gold: #C59D5F;
    
    /* Service-Specific Accent Colors */
    --accent-orange: #FF6B35;      /* Conversion/Audit */
    --shopify-green: #008060;      /* Shopify */
    --woo-purple: #7F54B3;         /* WooCommerce */
    --google-blue: #4285F4;        /* Google Workspace */
    --security-blue: #3b82f6;      /* Cybersecurity */
    --infra-teal: #14B8A6;         /* Infrastructure */
    
    /* Conversion Colors (Landing Pages) */
    --alert-red: #ef4444;
    --warning-orange: #f59e0b;
    --success-green: #10b981;
    
    /* Neutrals */
    --warm-grey: #8B8680;
    --light-bg: #F8F7F5;
    --white: #FFFFFF;
    --border-subtle: #E5E3DF;
    
    /* Typography */
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    
    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */

/* Import Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: var(--font-sans);
    color: var(--primary-navy);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - Serif for Authority */
h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.entry-title,
.page-title {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Landing Page Typography (Smaller Max Sizes) */
.landing-page h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.landing-page h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Paragraph Styling */
p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Links */
a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

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


/* ========================================
   BUTTON SYSTEM
   ======================================== */

.btn,
.wp-block-button__link,
.button,
input[type="submit"] {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-sans);
}

/* Primary Button */
.btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46, 91, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 91, 255, 0.4);
    color: var(--white);
}

/* Outline Button */
.btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* Secondary Button */
.btn-secondary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-secondary:hover {
    background: #b08d54;
    color: var(--white);
}

/* ========== LANDING PAGE BUTTONS (3D EFFECT) ========== */

/* Base 3D Button (Landing Pages) */
.btn-3d {
    padding: 18px 36px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Service-Specific 3D Buttons */
.btn-orange {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 0 #e65a2b, 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-orange:hover {
    background: #e65a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #e65a2b, 0 10px 24px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-orange:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #e65a2b, 0 4px 8px rgba(255, 107, 53, 0.3);
}

.btn-shopify {
    background: var(--shopify-green);
    color: var(--white);
    box-shadow: 0 4px 0 #004c3f, 0 8px 20px rgba(0, 128, 96, 0.3);
}

.btn-shopify:hover {
    background: #004c3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #004c3f, 0 10px 24px rgba(0, 128, 96, 0.4);
    color: var(--white);
}

.btn-purple {
    background: var(--woo-purple);
    color: var(--white);
    box-shadow: 0 4px 0 #6b4599, 0 8px 20px rgba(127, 84, 179, 0.3);
}

.btn-purple:hover {
    background: #6b4599;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #6b4599, 0 10px 24px rgba(127, 84, 179, 0.4);
    color: var(--white);
}

.btn-google {
    background: var(--google-blue);
    color: var(--white);
    box-shadow: 0 4px 0 #3367d6, 0 8px 20px rgba(66, 133, 244, 0.3);
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #3367d6, 0 10px 24px rgba(66, 133, 244, 0.4);
    color: var(--white);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 0 #a07d49, 0 8px 20px rgba(197, 157, 95, 0.3);
}

.btn-gold:hover {
    background: #a07d49;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #a07d49, 0 10px 24px rgba(197, 157, 95, 0.4);
    color: var(--white);
}

.btn-security {
    background: var(--security-blue);
    color: var(--white);
    box-shadow: 0 4px 0 #2563eb, 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-security:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #2563eb, 0 10px 24px rgba(59, 130, 246, 0.4);
    color: var(--white);
}


/* ========================================
   CONTAINER & LAYOUT SYSTEM
   ======================================== */

.container,
.wp-block-group.has-global-padding,
.site-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Full-width sections */
.full-width-section {
    width: 100%;
    padding: var(--spacing-xl) 0;
}

/* Section spacing */
.section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ========================================
   CARD COMPONENTS
   ======================================== */

.card,
.wp-block-group.is-style-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 91, 255, 0.05) 0%, transparent 70%);
    transform: translate(50%, -50%);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-blue);
}

/* Card Header */
.card-header {
    margin-bottom: 20px;
}

/* Card Body */
.card-body {
    position: relative;
    z-index: 1;
}

/* Badge/Label */
.badge,
.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(46, 91, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}


/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-grey);
    margin-top: 20px;
}


/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section,
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2942 100%);
    color: var(--white);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Landing Page Hero (Shorter) */
.landing-page .hero {
    padding: 80px 0 100px;
}

/* Background Pattern */
.hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-section h1,
.hero-section h2,
.hero h1,
.hero h2 {
    color: var(--white);
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Landing Page Hero Subtitle */
.landing-page .hero-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    flex: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
}


/* ========================================
   LANDING PAGE SPECIFIC COMPONENTS
   ======================================== */

/* Alert Badge (Fear Appeal) */
.alert-badge {
    display: inline-block;
    background: var(--alert-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.warning-badge {
    background: var(--warning-orange);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* Hero Grid (Landing Pages) */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Problem Box (Landing Pages) */
.problem-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 50px 40px;
}

.problem-box h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.problem-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--alert-red);
    border-radius: 4px;
}

.problem-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.problem-item-content {
    flex: 1;
}

.problem-item strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Form Box (Landing Pages) */
.form-box {
    background: var(--white);
    border-radius: 4px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--accent-blue);
    position: relative;
}

.form-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--success-green);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: var(--light-bg);
    transition: all var(--transition-base);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: var(--white);
}

/* Service-specific input focus states */
.landing-page.conversion input:focus,
.landing-page.conversion select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.landing-page.shopify input:focus,
.landing-page.shopify select:focus {
    border-color: var(--shopify-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.1);
}

.landing-page.woocommerce input:focus,
.landing-page.woocommerce select:focus {
    border-color: var(--woo-purple);
    box-shadow: 0 0 0 3px rgba(127, 84, 179, 0.1);
}

.landing-page.google input:focus,
.landing-page.google select:focus {
    border-color: var(--google-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--warm-grey);
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lock-icon {
    color: var(--success-green);
}

/* Stats Bar (Landing Pages) */
.stats-bar {
    background: var(--primary-navy);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Benefits List (Landing Pages) */
.benefits-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    margin-bottom: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-blue);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.check-icon {
    color: var(--accent-blue);
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.benefit-text {
    color: var(--warm-grey);
    line-height: 1.7;
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1a45d9 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.trust-section h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.trust-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* ========================================
   GRID SYSTEMS
   ======================================== */

/* Two Column Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Three Column Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Four Column Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

@media (min-width: 769px) and (max-width: 968px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   LISTS & FEATURE LISTS
   ======================================== */

/* Clean Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

/* Checkmark List */
.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}


/* ========================================
   NAVIGATION STYLES
   ======================================== */

.site-header,
.main-navigation,
.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--warm-grey);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Minimal Header (Landing Pages) */
.landing-page header {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.landing-page .logo {
    text-align: center;
}


/* ========================================
   BACKGROUND PATTERNS & TEXTURES
   ======================================== */

/* Subtle Dot Pattern */
.bg-pattern-dots {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Light Background */
.bg-light {
    background-color: var(--light-bg);
}

/* Dark Background */
.bg-dark {
    background-color: var(--primary-navy);
    color: var(--white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
    color: var(--white);
}


/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Color Utilities */
.text-navy { color: var(--primary-navy); }
.text-blue { color: var(--accent-blue); }
.text-gold { color: var(--accent-gold); }
.text-grey { color: var(--warm-grey); }
.text-white { color: var(--white); }

/* Highlight Utilities */
.highlight {
    color: var(--accent-blue);
}

.highlight-gold {
    color: var(--accent-gold);
}

.highlight-orange {
    color: var(--accent-orange);
}


/* ========================================
   WORDPRESS-SPECIFIC OVERRIDES
   ======================================== */

/* Gutenberg Block Spacing */
.wp-block-group {
    margin-bottom: 2rem;
}

/* WordPress Image Blocks */
.wp-block-image img {
    border-radius: var(--radius-md);
}

/* WordPress Quote Blocks */
.wp-block-quote {
    border-left: 4px solid var(--accent-blue);
    padding-left: 2rem;
    font-style: italic;
    color: var(--warm-grey);
}

.wp-block-quote cite {
    color: var(--accent-gold);
    font-style: normal;
    font-weight: 600;
}

/* WordPress Table Blocks */
.wp-block-table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table th,
.wp-block-table td {
    padding: 1rem;
    border: 1px solid var(--border-subtle);
}

.wp-block-table th {
    background: var(--light-bg);
    font-weight: 600;
    text-align: left;
}

/* WordPress Separator */
.wp-block-separator {
    border: none;
    border-top: 2px solid var(--border-subtle);
    margin: 3rem 0;
}


/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

/* Smooth Hover Lift */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slide In Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

/* Moving Pattern (CTA Sections) */
@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .form-box,
    .problem-box {
        padding: 30px;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Stack on mobile */
@media (max-width: 768px) {
    .stack-mobile {
        flex-direction: column !important;
    }
}


/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-blue);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

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


/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .site-header,
    .site-footer,
    .nav-links,
    .btn,
    .form-box,
    .problem-box {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
}


/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    padding-top: 30px;
}

.footer-links {
    margin: 24px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 16px;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

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

.disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Minimal Footer (Landing Pages) */
.landing-page footer {
    text-align: center;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
