/* ========================================
   Promo Popup Styles
   ======================================== */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.promo-modal {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.promo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.promo-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 24px;
}

.promo-headline {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.5;
}

.promo-cta {
    display: inline-block;
    background: #FFD700;
    color: #1E3A8A;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: #FFEB3B;
}

.promo-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 16px;
}

.promo-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-decoration-left {
    top: -80px;
    left: -80px;
}

.promo-decoration-right {
    bottom: -80px;
    right: -80px;
}

/* Confetti effect */
.promo-confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(-100px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(400px) rotate(720deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .promo-modal {
        width: 95%;
        padding: 40px 24px;
    }
    
    .promo-title {
        font-size: 56px;
    }
    
    .promo-subtitle {
        font-size: 24px;
    }
    
    .promo-headline {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 48px;
    }
    
    .promo-subtitle {
        font-size: 20px;
    }
    
    .promo-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* ========================================
   EiddieHub - Main Stylesheet
   Color Scheme: Blue (#2563EB, #3B82F6)
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;
    --primary-200: #BFDBFE;
    --primary-500: #3B82F6;
    --primary-600: #2563EB;
    --primary-700: #1D4ED8;
    --primary-900: #1E3A8A;
    
    /* Neutral Colors */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Promo Banner */
    --promo-bg: #1a1a1a;
    --promo-highlight: #60A5FA;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   Header / Navigation
   ======================================== */
.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(90deg, #2550C1 0%, #3370E2 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--neutral-700);
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--neutral-700);
    font-size: 14px;
    transition: background var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    transition: all var(--transition-fast);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-600);
    color: #fff;
}

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

.btn-white {
    background: #fff;
    color: var(--primary-700);
}

.btn-white:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: var(--hero-gradient);
    padding: calc(var(--space-4xl) + 140px) 0 var(--space-4xl);
    color: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-features {
    margin-bottom: var(--space-xl);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 16px;
}

.hero-features svg {
    flex-shrink: 0;
    color: #86EFAC;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    background: var(--primary-600);
    padding: var(--space-xl) 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Section Styles
   ======================================== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--neutral-800);
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.section-label {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

/* ========================================
   Pain Points Section
   ======================================== */
.pain-points {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pain-card {
    text-align: center;
    padding: var(--space-xl);
}

.pain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
}

.pain-card p {
    color: var(--neutral-600);
    font-size: 15px;
}

/* ========================================
   Fulfillment Center Section
   ======================================== */
.fulfillment-center {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.fulfillment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.fulfillment-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.fulfillment-content p {
    color: var(--neutral-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

.feature-card {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    margin-bottom: var(--space-sm);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 14px;
    color: var(--neutral-600);
}

/* ========================================
   Inventory Section
   ======================================== */
.inventory-section {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.inventory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.inventory-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.inventory-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
}

.inventory-features {
    margin-bottom: var(--space-xl);
}

.inventory-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 16px;
    color: var(--neutral-700);
}

.inventory-features svg {
    flex-shrink: 0;
    color: var(--primary-600);
    margin-top: 2px;
}

/* ========================================
   Workflow Section
   ======================================== */
.workflow {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.workflow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.workflow-step {
    text-align: center;
    flex: 1;
    max-width: 220px;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto var(--space-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary-600);
    box-shadow: var(--shadow-md);
}

.workflow-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.workflow-step p {
    font-size: 14px;
    color: var(--neutral-600);
}

.workflow-connector {
    width: 60px;
    height: 2px;
    background: var(--primary-200);
    margin-top: 56px;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    font-size: 14px;
    color: var(--neutral-600);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

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

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    text-align: left;
    font-family: inherit;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--neutral-400);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--hero-gradient);
    padding: var(--space-4xl) 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-section > .container > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

/* Contact Form */
.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: var(--space-md);
    transition: border-color var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: #fff;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 0 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.footer-brand-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.footer-brand-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.footer-social {
    margin-top: 8px;
}

.social-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background: #60a5fa;
    border-radius: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 24px 32px 24px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #60a5fa;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        display: inline-block;
        text-align: left;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .fulfillment-grid,
    .inventory-grid {
        grid-template-columns: 1fr;
    }
    
    .fulfillment-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .promo-highlight {
        font-size: 20px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: var(--space-lg);
        gap: 0;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--neutral-200);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--space-lg);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero {
        padding: calc(var(--space-3xl) + 120px) 0 var(--space-3xl);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .fulfillment-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .workflow-steps {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .workflow-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-brand-text p {
        max-width: 100%;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .fulfillment-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        gap: 24px;
        padding: 0 12px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-logo-icon {
        margin: 0 auto;
    }
    
    .footer-brand-text h2 {
        text-align: center;
    }
    
    .footer-brand-text p {
        text-align: center;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-bottom {
        padding: 20px 12px 24px 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}
