/* Kitchen Optimizer - Unified Styles
 * ============================================
 * 
 * This is the SINGLE SOURCE OF TRUTH for all website styling.
 * All pages MUST link to this file only - NO inline styles!
 * 
 * TABLE OF CONTENTS:
 * --------------------
 * 1. CSS Variables (colors, shadows, spacing)
 * 2. Base Styles (reset, typography)
 * 3. Navigation (.nav-container)
 * 4. Hero Sections (.hero, .hero-section)
 * 5. Content Sections (.section)
 * 6. Cards (.feature-card, .pricing-card)
 * 7. Buttons (.btn)
 * 8. Forms
 * 9. Footer
 * 10. Mobile Responsive
 * 11. Animations
 * 12. Utilities
 * 
 * 
 * QUICK REFERENCE:
 * ----------------
 * Colors:
 *   --primary: #FF6B35 (orange - main brand)
 *   --primary-dark: #E55100
 *   --secondary: #004E89 (blue)
 *   --accent: #00C9A7 (teal)
 *   --dark: #1a1a2e (text)
 *   --gray: #6c757d
 *   --light: #f8f9fa (backgrounds)
 * 
 * Components:
 *   .nav-container    - Fixed header with logo + nav
 *   .hero-section     - Page hero with gradient background
 *   .section          - Content sections
 *   .feature-card     - Service/feature cards
 *   .pricing-card     - Pricing tier cards
 *   .btn             - Primary CTA buttons
 *   .btn-secondary   - Secondary buttons
 * 
 * Mobile Breakpoints:
 *   Desktop: > 1024px
 *   Tablet: 768px - 1024px
 *   Mobile: < 768px
 * 
 * 
 * HOW TO USE:
 * ------------
 * 1. Add to <head>: <link rel="stylesheet" href="css/unified.css">
 * 2. Use classes from this file
 * 3. NO <style> blocks in HTML files!
 * 4. Edit THIS file for site-wide changes
 * 
 * 
 * VERTICAL COLORS (override in specific pages):
 * --------------------------------------------
 * Catering: --primary: #2ECC71 (green)
 * Flowers: --primary: #9B59B6 (purple)
 * 
 * ============================================ */

/* Base styles to prevent horizontal scroll */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary: #FF6B35;
    --primary-dark: #E55100;
    --primary-light: #FF8A5C;
    --secondary: #004E89;
    --secondary-dark: #003A66;
    --accent: #00C9A7;
    --accent-dark: #00A385;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #1a1a2e;
    --dark-light: #2d2d4a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #9CA3AF;
    --white: #ffffff;
    --bg-light: #fafbfc;
    --bg-offset: #f0f4f8;
    
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    --gradient-accent: linear-gradient(135deg, #00C9A7 0%, #00E5B8 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Unified Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 0 1px var(--primary);
}

.nav-cta,
.mobile-cta,
.plan-cta {
    background: var(--primary) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    font-weight: 600;
    transition: all var(--transition-medium);
    display: inline-block;
}

.nav-cta:hover,
.mobile-cta:hover,
.plan-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Secondary CTA variant */
.plan-cta-secondary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

.plan-cta-secondary:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.plan-cta-primary {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.lang-toggle {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1rem 1rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-nav a.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    border-left: 3px solid var(--primary);
}

.mobile-nav .close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.mobile-nav .close-btn:hover,
.mobile-nav .close-btn:active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.mobile-nav .mobile-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-weight: 600;
    border: none;
}

.mobile-nav .mobile-cta:hover,
.mobile-nav .mobile-cta:active {
    background: var(--primary-dark);
    padding-left: 1rem;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section,
.hero {
    padding: 6rem 5% 3rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        var(--white);
}

.hero-section h1,
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 6rem 5% 3rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.625rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 600;
}

.trust-badge.primary {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    color: #c2410c;
}

.trust-badge.secondary {
    background: rgba(0, 78, 137, 0.1);
    border-color: rgba(0, 78, 137, 0.2);
    color: var(--secondary);
}

.trust-badge.accent {
    background: rgba(0, 201, 167, 0.1);
    border-color: rgba(0, 201, 167, 0.2);
    color: #007a63;
}

/* Improved CTA Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.4);
}

.btn-outline {
    border: 1px solid #e8ecf0;
    color: var(--dark);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

/* New: Gradient CTA Button */
.btn-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 50%, #FF6B35 100%);
    background-size: 200% 200%;
    color: white;
    animation: gradientMove 3s ease infinite;
}

.btn-gradient:hover {
    animation: none;
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* New: Glowing CTA */
.btn-glow {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.3);
    transform: translateY(-3px) scale(1.02);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid #e8ecf0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, var(--white) 100%);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-card .desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin: 2rem 0;
}

.price-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.price-card li i {
    color: var(--primary);
}

/* Popular Badge - Enhanced */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
}

/* Popular pricing card enhancement */
.pricing-card.popular,
.price-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--white) 100%);
    transform: scale(1.03);
    position: relative;
    overflow: visible;
}

.pricing-card.popular:hover,
.price-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
}

/* Chat Widget - Unified */
#chatWidget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#chatButton {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: transform var(--transition-medium);
    font-size: 1.5rem;
    border: none;
}

#chatButton:hover {
    transform: scale(1.1);
}

#chatWindow {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#chatHeader {
    background: var(--gradient-dark);
    padding: 1rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatHeader span {
    font-weight: 600;
}

#chatClose {
    cursor: pointer;
    font-size: 1.25rem;
    background: none;
    border: none;
    color: white;
}

#chatMessages {
    padding: 1rem;
    height: 260px;
    overflow-y: auto;
    background: var(--bg-light);
}

#chatMessages div {
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
}

#chatMessages a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

#chatInput {
    padding: 0.75rem;
    background: white;
    border-top: 1px solid #eee;
}

#chatInput a {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    justify-content: center;
    gap: 12px;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-cta .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.sticky-cta .btn-secondary {
    background: var(--secondary);
    color: white;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Ensure minimum font size for readability */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .nav-links,
    .nav-cta,
    .lang-toggle {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section,
    .hero {
        padding: 6rem 1.5rem 2rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    /* Hero buttons - side by side on mobile */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-buttons .btn {
        flex: 1 1 auto !important;
        min-width: 140px !important;
        max-width: 200px !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    /* Hero stats - stack vertically with better spacing */
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .hero-stats .stat {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    /* Trust badges - wrap properly */
    .trust-badges {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badges .trust-badge {
        flex: 0 1 auto;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
    
    /* Trust section in index.html - inline styles */
    [style*="justify-content: center"][style*="gap: 60px"] {
        gap: 1.5rem !important;
    }
    
    /* Platform logos - wrap properly */
    .platform-logos,
    [style*="justify-content: center"][style*="gap: 50px"] {
        gap: 1rem !important;
    }
    
    /* Features grid - single column */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Feature cards */
    .feature-card,
    .feature-card-modern {
        padding: 1.25rem !important;
    }
    
    /* Pricing grid - single column */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    .price-card {
        padding: 1.5rem !important;
    }
    
    .price {
        font-size: 2.5rem !important;
    }
    
    /* Steps grid - single column */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Testimonials grid - single column */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
    }
    
    /* Values grid - single column */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Tool cards grid */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Cards - better touch targets */
    .card {
        padding: 1.5rem !important;
    }
    
    /* Form rows */
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Results grid */
    .results-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Comparison grid */
    .comparison {
        grid-template-columns: 1fr !important;
    }
    
    /* Sticky CTA on mobile */
    .sticky-cta {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .sticky-cta a {
        flex: 1 !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    body {
        padding-bottom: 80px !important;
    }
    
    /* Chat widget mobile */
    #chatWidget {
        bottom: 100px !important;
        right: 15px !important;
    }
    
    #chatWindow {
        width: 280px !important;
        height: 380px !important;
        right: -20px !important;
    }
    
    #chatMessages {
        height: 220px !important;
    }
    
    .whatsapp-float {
        bottom: 100px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    /* Mobile floating CTA fix */
    .mobile-cta[style*="position: fixed"] {
        display: block !important;
    }
    
    .mobile-cta[style*="position: fixed"] .btn {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Better spacing for sections */
    .section {
        padding: 2.5rem 1rem !important;
    }
    
    /* CTA banner */
    .cta-banner {
        padding: 2.5rem 1rem !important;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem !important;
    }
    
    /* Help section */
    .help-section {
        padding: 0 1rem !important;
        margin: 2rem auto 1rem !important;
    }
    
    /* Section header */
    .section-header {
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    /* Tool/calculator */
    .calculator,
    .tool {
        padding: 1.5rem !important;
        margin: 1rem auto !important;
    }
    
    /* CTA box */
    .cta-box {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    /* Quick Fix: Card padding */
    .feature-card, .pricing-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Quick Fix: Section spacing */
    .section {
        padding: 2rem 1rem;
    }
    
    /* Quick Fix: Footer links */
    .footer a {
        color: #FF6B35;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .sticky-cta a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .sticky-cta {
        padding: 10px 15px;
    }
    
    #chatWindow {
        width: 260px;
        height: 350px;
    }
    
    /* Improve form touch targets - prevents iOS zoom */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    /* Prevent zoom on form focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    color: var(--dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Section spacing */
.section {
    padding: 5rem 5%;
    min-height: auto;
    clear: both;
}

.section + .section {
    margin-top: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }
}

/* CTA Banner Style */
.cta-banner {
    background: var(--gradient-secondary);
    padding: 4rem 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e8ecf0;
    box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.testimonial-card .author-title {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    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;
    }
}

/* Utility Classes for consistent styling */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

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

/* Card styles */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.card-text {
    color: var(--gray);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 5%;
}

/* Value Card */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Help Section */
.help-section {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 2rem;
    padding: 0 5%;
}

.help-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.help-section p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Content Section */
.content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--bg-offset) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid #e8ecf0;
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-box p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-medium);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #166534;
}

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

/* Section headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Tool cards */
.tool-card {
    display: block;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.tool-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tool-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.tool-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray);
}

.feature-list li i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* Additional list fixes - prevent double bullets */
.plan-features,
.problem-list,
.step-list,
.task-list,
.benefits-list,
.service-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.plan-features li,
.problem-list li,
.step-list li,
.task-list li,
.benefits-list li,
.service-list li {
    list-style: none !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* More utilities */
.text-gray { color: var(--gray); }
.text-dark { color: var(--dark); }
.text-white { color: white; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.5rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; letter-spacing: 1px; }
.leading-relaxed { line-height: 1.7; }

.w-full { width: 100%; }

.bg-white { background: white; }
.bg-light { background: var(--light); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.transition { transition: all var(--transition-medium); }

.border-transparent { border: 2px solid transparent; }

/* Icon boxes */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box-primary {
    background: var(--gradient-primary);
    color: white;
}

.icon-box-success {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: white;
}

.icon-box-secondary {
    background: var(--gradient-secondary);
    color: white;
}

/* ============================================
   MODERN UI ENHANCEMENTS
   ============================================ */

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.glass-card-dark {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

/* Modern Shadow Options */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shadow-glow {
    transition: all 0.3s ease;
}

.shadow-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-delayed {
    animation: float-delayed 3s ease-in-out 1.5s infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

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

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

/* Modern Buttons */
.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

/* Icon Circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* Badge */
.badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.badge-accent {
    background: rgba(0, 201, 167, 0.1);
    color: var(--accent);
}

/* Modern Divider */
.divider-gradient {
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 60px;
}

.divider-center {
    margin: 2rem auto;
}

/* Hero Section Enhancement */
.hero-enhanced {
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-enhanced::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Feature Grid Enhancement */
.feature-card-modern {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Section Enhancement */
.cta-enhanced {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    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.05'%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.5;
}

/* Progress Bar Modern */
.progress-modern {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-modern-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--dark);
    color: white;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Tool/Calculator Styles */
.calculator,
.tool {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: var(--shadow-md);
}

.calculator h2,
.tool h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin: 2rem 0;
    border: 2px dashed #e8ecf0;
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

/* Results Section */
.results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ecf0;
}

.results h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Result Cards Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.result-card .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.result-card .label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--bg-offset) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid #e8ecf0;
}

.cta-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* CTA Before Results */
.cta-before-results {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-before-results h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cta-before-results p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Platform Selection */
.platforms-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 500px) {
    .platforms {
        grid-template-columns: 1fr;
    }
}

.platform {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.platform:hover {
    border-color: var(--primary-light);
}

.platform.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.platform i {
    font-size: 1.5rem;
}

.platform .name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.platform .fee {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Big Number Display */
.big-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0;
}

.big-number span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

@media (max-width: 600px) {
    .big-number {
        font-size: 2.5rem;
    }
}

/* Comparison Cards */
.comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

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

.comp-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}

.comp-card.highlight {
    background: var(--gradient-primary);
    color: white;
}

.comp-card.highlight .platform-name,
.comp-card.highlight .comm,
.comp-card.highlight .savings {
    color: white;
}

.comp-card .platform-name {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.comp-card .comm {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.comp-card .savings {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.results-header {
    text-align: center;
    margin-bottom: 1rem;
}

.results-header p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Button Loading State */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn i {
    margin-right: 0.5rem;
}

/* ============================================
   MOBILE HEADER FIX - Emergency Fix
   ============================================ */

/* Mobile header layout - horizontal row */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem !important;
        height: auto !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
        min-height: 60px !important;
    }
    
    .nav-logo {
        font-size: 1.1rem !important;
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }
    
    .nav-logo-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-btn i {
        font-size: 1.25rem !important;
    }
    
    /* Hide regular nav on mobile */
    .nav-links {
        display: none !important;
    }
    
    /* Make sure body has padding for fixed header */
    body {
        padding-top: 60px !important;
    }
    
    /* Hero sections need less top padding */
    .hero,
    .hero-section {
        padding-top: 80px !important;
    }
}

/* Ensure hamburger is visible */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* ============================================
   BEST PRACTICES - 2026 Design Standards
   ============================================ */

/* Touch-friendly targets (minimum 44px) */
.btn,
.mobile-menu-btn,
.nav-cta,
.feature-card,
.pricing-card {
    min-height: 44px;
    touch-action: manipulation;
}

/* Better button focus for accessibility */
.btn:focus,
a.btn:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
}

/* Fluid typography */
body {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
}

/* Better section spacing */
section {
    padding: clamp(3rem, 5vw, 5rem) 5%;
}

/* Visual hierarchy - limit font sizes */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Improved CTA styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Better card hover effects */
.feature-card,
.pricing-card {
    transition: all 0.3s ease;
}

.feature-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Mobile improvements */
@media (max-width: 768px) {
    /* Better touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Larger touch targets */
    .btn {
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    /* Single column on mobile */
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Better spacing */
    section {
        padding: 3rem 1rem;
    }
}

/* ============================================
   VISUAL ENHANCEMENTS - Make It Look Cool
   ============================================ */

/* ---- Glassmorphism ---- */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Gradient Borders ---- */
.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ---- Glow Effects ---- */
.glow-orange {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.glow-text {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* ---- Animated Backgrounds ---- */
.bg-animated {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---- Floating Animation ---- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* ---- Pulse Animation ---- */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* ---- Shimmer Effect ---- */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* ---- Better Box Shadows ---- */
.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-elegant {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.shadow-luxury {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ---- Hover Lift ---- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ---- Text Gradient ---- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Border Radius Variants ---- */
.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ---- Icon Styles ---- */
.icon-lg {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
}

/* ---- Card Enhancements ---- */
.card-elegant {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elegant);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

/* ---- Better Spacing ---- */
.section-padding {
    padding: 5rem 5%;
}

.section-padding-lg {
    padding: 8rem 5%;
}

/* ---- Trust Indicators ---- */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* ---- Better Dividers ---- */
.divider-elegant {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin: 3rem 0;
}

/* ============================================
   HERO ENHANCEMENTS - Make First Impression Count
   ============================================ */

/* Animated hero background */
.hero-animated {
    position: relative;
    overflow: hidden;
}

/* Geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Better hero content */
.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero with gradient overlay */
.hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
}

/* Stats row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stat-label-small {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ============================================
   SCROLL ANIMATIONS - Trigger on Scroll
   ============================================ */

/* Fade in on scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide animations */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Counter Animation ---- */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter {
    display: inline-block;
}

/* ---- Better Hover Effects ---- */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

/* ---- Sticky Elements ---- */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ---- Better Focus States ---- */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ---- Selection Color ---- */
::selection {
    background: var(--primary);
    color: white;
}

/* ============================================
   ADDITIONAL VISUAL POLISH
   ============================================ */

/* ---- Better Section Alternating ---- */
.section-alt {
    background: var(--light);
}

.section-alt:nth-child(even) {
    background: white;
}

/* ---- 3D Card Effect ---- */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(-5deg);
}

/* ---- Image Hover ---- */
.img-hover {
    transition: transform 0.5s ease;
}

.img-hover:hover {
    transform: scale(1.05);
}

/* ---- Masked Image ---- */
.img-masked {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ---- Trust Signals ---- */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* ---- Better Background Patterns ---- */
.bg-dots {
    background-image: radial-gradient(var(--gray-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-grid {
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ---- Social Proof ---- */
.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* ---- Video Container ---- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- Better Form Styles ---- */
.input-elegant {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.input-elegant:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-elegant::placeholder {
    color: var(--gray-light);
}

/* ---- Progress Steps ---- */
.steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   ADVANCED VISUAL EFFECTS
   ============================================ */

/* ---- Noise Texture Overlay ---- */
.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ---- Spotlight Cursor Effect ---- */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.spotlight:hover::after {
    opacity: 1;
}

/* ---- Magnetic Button ---- */
.btn-magnetic {
    transition: transform 0.3s ease;
}

.btn-magnetic:hover {
    transform: scale(1.05);
}

/* ---- Marquee ---- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

/* ---- Ticker ---- */
.ticker {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
    display: none;
}

/* ---- Badge Pulse ---- */
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.badge-pulse {
    animation: badge-pulse 2s ease-in-out infinite;
}

/* ---- Char Counter ---- */
.char-counter {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: right;
    margin-top: 0.25rem;
}

/* ---- Loading Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ---- Tooltip ---- */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 1rem;
    background: var(--dark);
    color: white;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumbs span {
    color: var(--dark);
}

/* ============================================
   BETTER COMPONENTS
   ============================================ */

/* ---- Accordion ---- */
.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--light);
}

.accordion-content {
    padding: 0 1.5rem 1rem;
    color: var(--gray);
}

/* ---- Tabs ---- */
.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.tab.active {
    color: var(--primary);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* ---- Modal ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

/* ---- Toast ---- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--danger);
}

/* ---- Avatar ---- */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-sm { width: 32px; height: 32px; }
.avatar-lg { width: 64px; height: 64px; }
.avatar-xl { width: 96px; height: 96px; }

/* ---- Badge ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary { background: var(--primary); color: white; }
.badge-secondary { background: var(--secondary); color: white; }
.badge-success { background: var(--success); color: white; }
.badge-outline { border: 1px solid currentColor; background: transparent; }

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */

/* ---- Like Button ---- */
.like-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.like-btn:hover {
    transform: scale(1.2);
}

.like-btn.liked {
    animation: like-pulse 0.3s;
}

@keyframes like-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ---- Copy Button ---- */
.copy-btn {
    position: relative;
}

.copy-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ---- Collapse ---- */
.collapse {
    transition: all 0.3s ease;
}

.collapse.collapsed {
    height: 0 !important;
    overflow: hidden;
    opacity: 0;
}

/* ---- Progress Ring ---- */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.5s ease;
}

/* ---- Countdown ---- */
.countdown {
    display: flex;
    gap: 1rem;
}

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

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
}

/* ---- Stepper ---- */
.stepper {
    display: flex;
    align-items: center;
}

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

.stepper-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
}

.stepper-step.completed .stepper-line,
.stepper-step.active .stepper-line {
    background: var(--primary);
}

/* ---- Notification Dot ---- */
.notification-dot {
    position: relative;
}

.notification-dot::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid white;
}

/* ---- Flip Card ---- */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* ---- Skeleton Avatar ---- */
.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ---- Table Styles ---- */
.table-elegant {
    width: 100%;
    border-collapse: collapse;
}

.table-elegant th,
.table-elegant td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.table-elegant th {
    font-weight: 600;
    color: var(--dark);
    background: var(--light);
}

.table-elegant tr:hover td {
    background: var(--light);
}

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

/* Show/hide on breakpoints */
.hide-mobile { display: block; }
.hide-desktop { display: none; }

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .hide-desktop { display: block !important; }
    
    .mobile-full-width {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .mobile-text-center { text-align: center !important; }
    .mobile-text-left { text-align: left !important; }
    
    .mobile-flex-col { flex-direction: column !important; }
    .mobile-gap-1 { gap: 0.5rem !important; }
    .mobile-gap-2 { gap: 1rem !important; }
    .mobile-gap-3 { gap: 1.5rem !important; }
    
    .mobile-p-1 { padding: 0.5rem !important; }
    .mobile-p-2 { padding: 1rem !important; }
    .mobile-p-3 { padding: 1.5rem !important; }
    .mobile-p-4 { padding: 2rem !important; }
    
    .mobile-mt-1 { margin-top: 0.5rem !important; }
    .mobile-mt-2 { margin-top: 1rem !important; }
    .mobile-mt-3 { margin-top: 1.5rem !important; }
    .mobile-mt-4 { margin-top: 2rem !important; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .tablet-full-width {
        width: 100% !important;
    }
}

/* Print */
@media print {
    .no-print { display: none !important; }
    body { font-size: 12pt; }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

/* Webkit */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-light) var(--light);
}

/* ============================================
   SELECTION & HIGHLIGHT
   ============================================ */

::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ============================================
   FOCUS RINGS
   ============================================ */

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   PLACEHOLDER STYLES
   ============================================ */

::placeholder {
    color: var(--gray-light);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--gray-light);
}

::-ms-input-placeholder {
    color: var(--gray-light);
}

/* ============================================
   DISABLED STATES
   ============================================ */

.btn:disabled,
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   ADVANCED ANIMATIONS
   ============================================ */

/* ---- Bounce In ---- */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.bounce-in {
    animation: bounceIn 0.6s ease forwards;
}

/* ---- Slide Up Fade ---- */
@keyframes slideUpFade {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-up-fade {
    animation: slideUpFade 0.5s ease forwards;
}

/* ---- Zoom In ---- */
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zoom-in {
    animation: zoomIn 0.4s ease forwards;
}

/* ---- Flip ---- */
@keyframes flip {
    from { transform: perspective(400px) rotateY(0); }
    to { transform: perspective(400px) rotateY(360deg); }
}

.flip {
    animation: flip 0.6s ease forwards;
}

/* ---- Rubber Band ---- */
@keyframes rubberBand {
    0% { transform: scale(1); }
    30% { transform: scale(1.25, 0.75); }
    40% { transform: scale(0.75, 1.25); }
    50% { transform: scale(1.15, 0.85); }
    65% { transform: scale(0.95, 1.05); }
    75% { transform: scale(1.05, 0.95); }
    100% { transform: scale(1); }
}

.rubber-band {
    animation: rubberBand 0.8s ease forwards;
}

/* ---- Heart Beat ---- */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

.heart-beat {
    animation: heartBeat 1s ease forwards;
}

/* ---- Wiggle ---- */
@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.wiggle {
    animation: wiggle 0.5s ease forwards;
}

/* ---- Jello ---- */
@keyframes jello {
    0%, 100% { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.25, 0.75, 1); }
    40% { transform: scale3d(0.75, 1.25, 1); }
    50% { transform: scale3d(1.15, 0.85, 1); }
    65% { transform: scale3d(0.95, 1.05, 1); }
    75% { transform: scale3d(1.05, 0.95, 1); }
}

.jello {
    animation: jello 0.9s ease forwards;
}

/* ---- Animation Delays ---- */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---- Animation Iteration ---- */
.iterate-1 { animation-iteration-count: 1; }
.iterate-2 { animation-iteration-count: 2; }
.iterate-3 { animation-iteration-count: 3; }
.infinite { animation-iteration-count: infinite; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }
.gap-6 { gap: 3rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

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

/* Spacing */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }
.p-6 { padding: 3rem; }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.max-w-md { max-width: 768px; }
.max-w-lg { max-width: 1024px; }
.max-w-xl { max-width: 1280px; }

/* Height */
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }

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

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

/* Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }
.text-white { color: white; }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: white; }

/* Border */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Visibility */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* ============================================
   HOW IT WORKS - PROCESS STEPS
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent, var(--primary));
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-card .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent, var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-card .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.step-card .step-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.step-card .step-list li i {
    color: var(--accent, var(--primary));
    margin-top: 3px;
}

/* Process intro */
.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem 5% 0;
}

.process-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .process-intro h2 {
        font-size: 1.75rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ============================================
   CONVERSION OPTIMIZATION
   ============================================ */

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 50px;
}

/* Exit intent popup style */
.exit-intent {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.exit-intent.show {
    opacity: 1;
    visibility: visible;
}

/* Trust signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* Urgency banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
}

/* Social proof ticker */
.social-proof {
    background: var(--light);
    padding: 1rem 0;
    overflow: hidden;
}

.social-proof-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Lead capture inline */
.lead-capture-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.lead-capture-inline input {
    flex: 1;
}

.lead-capture-inline button {
    flex-shrink: 0;
}

/* Better mobile CTA placement */
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        border-radius: var(--radius-lg);
    }
    
    .lead-capture-inline {
        flex-direction: column;
    }
}

/* ============================================
   ADDITIONAL PREMIUM EFFECTS
   ============================================ */

/* ---- Reveal on Scroll ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Highlight Box ---- */
.highlight-box {
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,255,255,0) 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ---- Number Circle ---- */
.number-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ---- Icon Box ---- */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.icon-box:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ---- Premium Badge ---- */
.badge-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Price Tag ---- */
.price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-tag span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* ---- Before/After ---- */
.before-after {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.before, .after {
    flex: 1;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.before {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.after {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.before-label, .after-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.before-label { color: #EF4444; }
.after-label { color: #22C55E; }

/* ---- Video Preview ---- */
.video-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.video-preview::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-preview:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ---- Comparison Table ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.comparison-table th {
    background: var(--light);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) td {
    background: rgba(0,0,0,0.02);
}

.comparison-check {
    color: var(--success);
    font-weight: 700;
}

.comparison-x {
    color: var(--danger);
}

/* ---- Centered Content ---- */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   FINAL POLISH
   ============================================ */

/* Smooth page transitions */
body {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Better focus visible */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print { display: none !important; }
    body { font-size: 12pt !important; }
    a[href]:after { content: " (" attr(href) ")"; }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --gray: #000;
        --gray-light: #333;
    }
}

/* Dark mode support (for future) */
@media (prefers-color-scheme: dark) {
    /* Can add dark mode styles here if needed */
}

/* ============================================
   NEW 2026 ENHANCEMENTS
   ============================================ */

/* ---- Enhanced Hero Badge ---- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-badge .badge-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* ---- Enhanced CTA Buttons ---- */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    opacity: 1;
}

/* ---- Better Hero Content ---- */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ---- Feature Icons ---- */
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* ---- Problem Section ---- */
.problem-section {
    background: var(--gradient-dark);
    padding: 5rem 5%;
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.problem-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    opacity: 0.95;
}

.problem-list li i {
    color: var(--accent);
    font-size: 1.25rem;
}

.problem-visual {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.problem-visual .big-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.problem-visual p {
    opacity: 0.8;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-content h2 {
        font-size: 1.75rem;
    }
    
    .problem-visual .big-number {
        font-size: 3rem;
    }
}

/* ---- Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ---- Stats Row Enhancement ---- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stats .stat {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    min-width: 160px;
    transition: all 0.3s ease;
}

.hero-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ---- Card Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ---- Text Gradient ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section Title ---- */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ---- Better Mobile Navigation ---- */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stats .stat {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-section {
        padding: 3rem 1.5rem;
    }
}

/* ---- Smooth Scrollbar ---- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ---- Link Enhancements ---- */
a {
    transition: color 0.2s ease, background 0.2s ease;
}

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

/* ---- Image Wrapper ---- */
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* ---- Card Stack Effect ---- */
.card-stack {
    position: relative;
}

.card-stack > *:nth-child(1) { transform: translateY(0); }
.card-stack > *:nth-child(2) { position: absolute; top: 10px; left: 10px; right: -10px; bottom: -10px; z-index: -1; }
.card-stack > *:nth-child(3) { position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; z-index: -2; }

/* ---- Line Clamp ---- */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Aspect Ratio ---- */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-portrait {
    aspect-ratio: 3 / 4;
}

/* ---- List Styles ---- */
.list-check {
    list-style: none;
    padding: 0;
}

.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.list-check li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

/* ---- Quote Block ---- */
.blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray);
    font-size: 1.1rem;
}

.blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--dark);
}

/* ---- Code Block ---- */
.code-block {
    background: var(--dark);
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

/* ---- Keyboard Key ---- */
.kbd {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--light);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ---- Toggle Switch ---- */
.toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--gray-light);
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle.active {
    background: var(--primary);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle.active::after {
    transform: translateX(24px);
}

/* ---- Progress Steps ---- */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-number {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.progress-step.completed .progress-step-number {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

/* ---- Card Hover Reveal ---- */
.hover-reveal {
    position: relative;
    overflow: hidden;
}

.hover-reveal-content {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-reveal:hover .hover-reveal-content {
    opacity: 1;
}

/* ---- Center Box ---- */
.center-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Border Box ---- */
.border-box {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

/* ---- Ring ---- */
.ring {
    border-radius: 50%;
    border: 2px solid var(--primary);
}

/* ---- Inline Flex ---- */
.inline-flex {
    display: inline-flex;
}

/* ---- Space Between ---- */
.justify-space-between {
    justify-content: space-between;
}

/* ---- Wrap ---- */
.flex-wrap {
    flex-wrap: wrap;
}

/* ---- Order ---- */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-first { order: -1; }
.order-last { order: 999; }

/* ---- Shrink ---- */
.shrink-0 {
    flex-shrink: 0;
}

/* ---- Self Align ---- */
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }

/* ---- Aspect Ratio Placeholder ---- */
.bg-pattern {
    background-color: var(--light);
    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='%23e5e7eb' fill-opacity='0.4'%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");
}

/* ---- Gradient Text ---- */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
}

/* ---- From Gradient ---- */
.from-primary {
    --tw-gradient-from: var(--primary);
}

.to-accent {
    --tw-gradient-to: var(--accent);
}

/* ---- Transform Origin ---- */
.transform-origin-center {
    transform-origin: center;
}

/* ---- Transition Properties ---- */
.transition-transform {
    transition-property: transform;
}

.transition-opacity {
    transition-property: opacity;
}

.transition-colors {
    transition-property: color, background-color, border-color;
}

/* ---- Duration ---- */
.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ---- Scale on Hover ---- */
.scale-hover:hover {
    transform: scale(1.05);
}

.scale-hover-102:hover {
    transform: scale(1.02);
}

/* ---- Rotate ---- */
.rotate-45 {
    transform: rotate(45deg);
}

.-rotate-45 {
    transform: rotate(-45deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

/* ---- Skew ---- */
.skew-x-12 {
    transform: skewX(12deg);
}

/* ---- Translate ---- */
.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-4 { transform: translateY(-1rem); }

/* ---- Better Mobile Hero ---- */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ---- Better Table Styles ---- */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background: var(--light);
    font-weight: 600;
    color: var(--dark);
}

tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

/* ---- Better Blockquote ---- */
blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

blockquote footer {
    background: none;
    padding: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ---- Horizontal Rule ---- */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 3rem 0;
}

/* ---- Selection ---- */
::selection {
    background: var(--primary);
    color: white;
}

/* ---- Placeholder ---- */
::placeholder {
    color: var(--gray-light);
    opacity: 1;
}

/* ---- Scroll Margin ---- */
.scroll-mt-20 {
    scroll-margin-top: 5rem;
}

.scroll-mt-24 {
    scroll-margin-top: 6rem;
}

/* ---- Visually Hidden (accessible) ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ---- Contain ---- */
.contain-layout {
    contain: layout;
}

.contain-paint {
    contain: paint;
}

/* ---- Will Change ---- */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* ---- Backface Visibility ---- */
.backface-hidden {
    backface-visibility: hidden;
}

.backface-visible {
    backface-visibility: visible;
}

/* ---- Perspective Origin ---- */
.perspective-origin-top {
    perspective-origin: top center;
}

.perspective-origin-bottom {
    perspective-origin: bottom center;
}

/* ---- Preserve 3d ---- */
.preserve-3d {
    transform-style: preserve-3d;
}

/* ---- Final Button Polish ---- */
.btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---- Input Reset ---- */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---- Better Card Reset ---- */
.card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ---- Image Reset ---- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- List Reset ---- */
ul, ol {
    margin: 0;
    padding: 0;
}

/* ---- Heading Reset ---- */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* ---- Paragraph Reset ---- */
p {
    margin: 0;
}

/* ---- Better Mobile Touch ---- */
@media (hover: none) {
    .hover\:hover:hover {
        /* Disable hover effects on touch devices */
    }
    
    .btn:hover {
        transform: none;
    }
    
    .feature-card:hover,
    .price-card:hover {
        transform: none;
    }
}

/* ---- Print Helper ---- */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    display: block;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.blog-card-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--light);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray);
}

/* Mobile */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-card-image {
        height: 120px;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
}
