/* CalculateHome.com - Unified Design System */

/* CSS Variables for Consistent Theming */
:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e1e8f0;
    --bg-dark: #1e293b;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    max-width: 100%;
    padding: 0 var(--space-lg);
}

/* Navigation - Unified Across All Pages */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--bg-tertiary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.logo:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: var(--space-2xl);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    position: relative;
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Sections */
.hero {
    background: var(--primary-gradient);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="80" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* Cards */
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    transition: var(--transition-base);
    border: 1px solid var(--bg-tertiary);
}

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

.card-header {
    margin-bottom: var(--space-lg);
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    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.3), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-inverse);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--bg-tertiary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-lg);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

/* Sections */
.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Background Variants */
.bg-primary { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }
.bg-gradient { background: var(--primary-gradient); }
.bg-dark { background: var(--bg-dark); }

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

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-inverse { color: var(--text-inverse); }

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-content {
        padding: 0 var(--space-md);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 70px !important;
        right: -280px !important;
        width: 280px !important;
        height: auto !important;
        max-height: calc(100vh - 70px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 1.5rem 0 !important;
        transition: right 0.3s ease-out !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2) !important;
        z-index: 9999 !important;
        list-style: none !important;
        border-radius: 0 0 0 12px !important;
    }

    .nav-links.mobile-open {
        right: 0 !important;
    }
    
    .nav-links li {
        margin: 0.25rem 0.75rem !important;
        width: auto !important;
        list-style: none !important;
    }

    .nav-links a {
        font-size: 1rem !important;
        padding: 0.75rem 1.5rem !important;
        color: #333 !important;
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        transition: background-color 0.2s ease !important;
    }

    .nav-links a:hover {
        background-color: rgba(102, 126, 234, 0.1) !important;
        color: #667eea !important;
    }

    .nav-links a.active {
        background-color: rgba(102, 126, 234, 0.2) !important;
        color: #667eea !important;
        font-weight: 600 !important;
    }
    
    .hero {
        padding: var(--space-2xl) 0;
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }

    .quick-calculator-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .quick-calc-card {
        padding: var(--space-lg);
    }

    .quick-calc-card .calc-icon {
        font-size: 2rem;
    }

    .quick-calc-card h3 {
        font-size: var(--font-size-base);
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .card {
        padding: var(--space-lg);
    }

    .quick-calculator-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .quick-calc-card {
        padding: var(--space-md);
    }

    .quick-calc-card .calc-icon {
        font-size: 1.8rem;
        margin-bottom: var(--space-xs);
    }

    .quick-calc-card h3 {
        font-size: var(--font-size-sm);
        margin-bottom: 2px;
    }

    .quick-calc-card p {
        font-size: var(--font-size-xs);
    }

    /* Professional Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-trust-indicators {
        display: none; /* Hide on mobile to reduce clutter */
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-calc-buttons {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }

    .footer-calc-btn {
        justify-content: center;
        min-width: 120px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    /* Hide some footer nav items on mobile */
    .footer-nav li:nth-child(n+5) {
        display: none;
    }

    .footer-cta-section {
        padding: 1rem;
    }

    .footer-features {
        display: none; /* Hide feature list on mobile */
    }
}

@media (max-width: 768px) {
    /* Professional Footer Mobile */
    .footer-main {
        padding: 2.5rem 0 1rem;
    }

    .footer-top {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Show only essential links on mobile */
    .footer-nav li:nth-child(n+4) {
        display: none;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-nav a {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }
}

/* Calculator-Specific Styles (Inherit from modern-calculator.css) */
.calculator-header {
    background: var(--primary-gradient);
    padding: var(--space-3xl) 0;
    text-align: center;
    color: var(--text-inverse);
}

.calculator-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

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

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

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

/* Quick Calculator Grid */
.quick-calculator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.quick-calc-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    text-decoration: none;
    color: var(--text-inverse);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-calc-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-calc-card .calc-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.quick-calc-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-inverse);
}

.quick-calc-card p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin: 0;
}

/* Compact Card Variant */
.compact-card {
    padding: var(--space-lg);
}


/* Professional Footer Styles */
.professional-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #334155;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.025em;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.trust-icon {
    color: #10b981;
    font-weight: bold;
}

.footer-quick-access {
    text-align: center;
}

.footer-cta-title {
    color: #f1f5f9;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-calc-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-calc-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.footer-calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.calc-btn-icon {
    font-size: 1rem;
}

.footer-view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-view-all:hover {
    color: #818cf8;
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column {
    /* Column styles handled by grid */
}

.footer-heading {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

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

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    color: #667eea;
    padding-left: 0.5rem;
}

.footer-cta-section {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-cta-text {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.footer-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-item {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid #334155;
}

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

.footer-copyright p {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-subtitle {
    font-size: 0.75rem !important;
    color: #475569 !important;
    margin-top: 0.25rem !important;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.badge-icon {
    font-size: 0.875rem;
}

/* Legacy Footer (fallback) */
.footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer h4 {
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: var(--text-inverse);
}

/* Enhanced Home Page Styles */

/* Enhanced Hero Section */
.enhanced-hero {
    padding: 3rem 0 4rem 0;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-inverse);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 950px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    color: var(--text-inverse);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Compact Section Headers */
.section-header-compact {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title-compact {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle-compact {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Section */
.tools-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.tools-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-tools-primary {
    background: var(--primary-gradient);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-tools-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tools-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-badge {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
}

.benefits-title {
    color: var(--text-inverse) !important;
}

.benefits-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Learning Section */
.learning-section {
    padding: 3rem 0;
}

.learning-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-learning-primary {
    background: var(--primary-gradient);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-learning-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.learning-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-mini {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Enhanced CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

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

.cta-header {
    margin-bottom: 2.5rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-inverse);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-inverse);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title-compact {
        font-size: 1.875rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-features {
        gap: 1rem;
    }

    .cta-feature {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .enhanced-hero {
        padding: 2rem 0 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }

    .section-title-compact {
        font-size: 1.5rem;
    }

    .section-subtitle-compact {
        font-size: 1rem;
    }

    .tools-features,
    .learning-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Professional Calculators Page Styles */

/* Compact Header */
.calculators-header {
    background: var(--primary-gradient);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calculators-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="80" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-inverse);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    color: var(--text-inverse);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Calculator Grid */
.calculators-grid {
    padding: 2.5rem 0;
    background: var(--bg-primary);
}

.calc-category {
    margin-bottom: 2.5rem;
}

.calc-category:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.calc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.calc-card {
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.calc-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-inverse);
}

.calc-card.featured .calc-info h3,
.calc-card.featured .calc-info p {
    color: var(--text-inverse);
}

.calc-icon {
    font-size: 2rem;
    min-width: 2rem;
    text-align: center;
}

.calc-info {
    flex: 1;
}

.calc-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.calc-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.calc-arrow {
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.calc-card:hover .calc-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.calc-card.featured .calc-arrow {
    color: var(--text-inverse);
}

/* Why Choose Section */
.why-choose {
    padding: 2.5rem 0;
    background: var(--bg-secondary);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-header {
    margin-bottom: 2rem;
}

.why-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    color: white;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Quick Start CTA */
.quick-start {
    padding: 3rem 0;
    text-align: center;
}

.quick-start-content {
    max-width: 600px;
    margin: 0 auto;
}

.quick-start h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.quick-start p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.start-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.start-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.start-btn.primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.start-btn.primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.start-btn.secondary {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.start-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Responsive Design for Calculators Page */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .quick-stats {
        gap: 1rem;
    }

    .calc-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .start-buttons {
        flex-direction: column;
        align-items: center;
    }

    .start-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calculators-header {
        padding: 2rem 0;
    }

    .header-title {
        font-size: 1.75rem;
    }

    .quick-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .calc-card {
        padding: 1rem;
    }

    .calc-info h3 {
        font-size: 1rem;
    }

    .calc-info p {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quick-start h2 {
        font-size: 1.75rem;
    }

    .quick-start p {
        font-size: 1rem;
    }
}

/* Ultra Mobile Footer Optimization */
@media (max-width: 480px) {
    .footer-main {
        padding: 1.5rem 0 0.5rem;
    }

    .footer-top {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        gap: 1rem;
    }

    .footer-logo {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .footer-cta-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-calc-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-calc-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        min-width: 140px;
    }

    .footer-view-all {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    /* Show only top 2 links per section on very small screens */
    .footer-nav li:nth-child(n+3) {
        display: none;
    }

    .footer-heading {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-nav a {
        font-size: 0.75rem !important;
        padding: 0.1rem 0 !important;
    }

    .footer-cta-section {
        padding: 0.75rem;
    }

    .footer-cta-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .footer-cta-button {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }

    .footer-subtitle {
        font-size: 0.65rem !important;
    }

    .footer-badges {
        gap: 0.75rem;
    }

    .footer-badge {
        font-size: 0.65rem;
    }
}

/* Testimonials & Social Proof Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-dots)"/></svg>');
    pointer-events: none;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-proof-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.social-proof-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.social-proof-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.social-proof-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-tertiary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.125rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .social-proof-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .social-proof-stats .stat-item {
        padding: 1rem 1.5rem;
    }

    .social-proof-stats .stat-number {
        font-size: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .social-proof-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-proof-stats .stat-item {
        width: 100%;
        max-width: 200px;
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* =========================
   LEAD CAPTURE STYLES
   ========================= */

/* Hero Email Capture */
.hero-email-capture {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.email-capture-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.email-capture-icon {
    font-size: 1.5rem;
}

.email-capture-text {
    font-size: 1.1rem;
    color: white;
}

.hero-email-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.email-submit-btn {
    padding: 0.875rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-submit-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.email-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet-left {
    padding-right: 2rem;
}

.lead-magnet-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-magnet-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-magnet-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.lead-magnet-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.magnet-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.social-proof-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid var(--bg-primary);
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Lead Capture Form */
.lead-magnet-right {
    position: relative;
}

.lead-capture-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.main-lead-form {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-benefits {
    display: grid;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.benefit-icon {
    color: var(--success-color);
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-header {
    margin-bottom: 2.5rem;
}

.newsletter-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-emoji {
    font-size: 1.125rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-email {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-email:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 0.875rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.newsletter-privacy {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* =========================
   RESPONSIVE DESIGN - LEAD CAPTURE
   ========================= */

@media (max-width: 768px) {
    .hero-email-capture {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .email-capture-content {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .email-capture-text {
        font-size: 1rem;
        text-align: center;
    }

    .hero-email-form {
        flex-direction: column;
        gap: 1rem;
    }

    .email-submit-btn {
        padding: 1rem;
    }

    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lead-magnet-left {
        padding-right: 0;
        text-align: center;
    }

    .lead-magnet-title {
        font-size: 2rem;
    }

    .lead-capture-form {
        padding: 2rem;
    }

    .newsletter-features {
        gap: 1rem;
    }

    .newsletter-feature {
        font-size: 0.875rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-submit {
        padding: 1rem;
    }

    .newsletter-title {
        font-size: 1.875rem;
    }
}