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

/* Body and Main Content Adjustments for Fixed Navbar */
body {
    font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Helvetica', 'Lucida Grande', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px !important; /* Add top padding to account for fixed navbar */
}

/* All main sections need proper top spacing */
.products-hero,
.products,
.implementation-process {
    scroll-margin-top: 80px; /* For smooth scrolling with fixed navbar */
}

.products-hero {
    min-height: calc(80vh - 80px); /* Adjust hero height for fixed navbar */
    padding-top: 2rem !important; /* Additional padding for better spacing */
}

/* Floating Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Navigation - STANDARDIZED FROZEN NAVBAR */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.nav-link.active {
    color: #8b5cf6;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #8b5cf6;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.75rem !important;
        margin: 2rem 0 !important;
        padding: 1rem 2rem !important;
        border-radius: 0.75rem !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        width: auto !important;
        max-width: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        display: block !important;
        font-weight: 400 !important;
        letter-spacing: 0.5px !important;
        backdrop-filter: blur(10px) !important;
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(139, 92, 246, 0.2) !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3) !important;
        font-weight: 500 !important;
        border-color: rgba(139, 92, 246, 0.5) !important;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .navbar {
        position: relative;
        z-index: 1001;
    }

    .nav-container {
        position: relative;
        z-index: 1002;
    }
}

/* Desktop Navigation - Fixed Navbar */
@media (min-width: 769px) {
    /* Ensure body padding on desktop */
    body {
        padding-top: 80px !important;
    }
    
    .products-hero {
        min-height: calc(80vh - 80px);
        padding-top: 2rem !important;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        z-index: 9999 !important;
        left: 0 !important;
        width: 100% !important;
        height: 80px !important;
    }

    .nav-container {
        height: 80px !important;
        align-items: center !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        background: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
        gap: 2rem !important;
        right: 0 !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .nav-link {
        font-size: 1rem !important;
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
        background: none !important;
        border: none !important;
        border-radius: 0.375rem !important;
        width: auto !important;
        max-width: none !important;
    }

    .nav-toggle {
        display: none !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-full {
    width: 100%;
}

/* Products Hero */
.products-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: 2;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

/* Tier Headers */
.tier-header {
    text-align: center;
    margin: 4rem 0 2rem 0;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tier-header.premium-tier {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
    border-color: #8b5cf6;
}

.tier-header.mini-tier {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(139, 92, 246, 0.1));
    border-color: #10b981;
}

.tier-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.tier-header p {
    color: #d1d5db;
    font-size: 1.125rem;
}

/* Featured Product */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    position: relative;
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.product-tagline {
    font-style: italic;
    color: #a855f7;
    margin: 1rem 0 0.5rem 0; /* Added top margin to clear badge */
    font-size: 1.125rem;
    line-height: 1.4;
}

.product-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin: 1rem 0 2rem 0;
    line-height: 1.7;
}

/* Product Content Container */
.product-content {
    padding-top: 1rem; /* Add padding to ensure badge doesn't overlap */
}

.product-content h3 {
    margin-bottom: 0.75rem;
    margin-top: 0.5rem; /* Small margin to clear badge */
    font-size: 1.75rem;
    color: #8b5cf6;
    line-height: 1.3;
}

.product-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.product-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.product-stat .stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.product-features, .business-benefits {
    margin: 2rem 0;
}

.product-features h4, .business-benefits h4 {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.product-features ul, .business-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-features li, .business-benefits li {
    font-size: 0.9rem;
    color: #d1d5db;
    padding: 0.25rem 0;
}

.product-pricing {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.pricing-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-tier {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-tier.featured {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
}

.pricing-tier h4 {
    margin: 0 0 0.5rem 0;
    color: #8b5cf6;
    font-size: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.pricing-tier p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.monthly-support {
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding-top: 1rem;
}

.monthly-support p {
    margin: 0 0 0.5rem 0;
    color: #d1d5db;
}

.monthly-support small {
    color: #9ca3af;
}

/* Product Mockup */
.product-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

.mockup-header {
    background: rgba(139, 92, 246, 0.2);
    padding: 1rem;
    text-align: center;
    color: #d1d5db;
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

.dashboard-stat .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

.dashboard-stat .stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.recent-orders h4 {
    margin: 0 0 1rem 0;
    color: #8b5cf6;
    font-size: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.order-product {
    font-size: 0.875rem;
    color: #d1d5db;
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.order-status.delivered {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.order-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

/* Service Badge Fixes for Main Site Product Cards */
.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem; /* Space for any badges */
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.premium-card {
    border-color: rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(236, 72, 153, 0.02));
    padding: 3rem 2.5rem 2.5rem 2.5rem; /* Extra top padding */
    margin-top: 1.5rem; /* More space for premium cards */
}

.product-card.premium-card::before {
    background: linear-gradient(90deg, #ec4899, #f97316, #ec4899);
}

.product-card.premium-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2);
}

/* Fix premium card badge if it exists */
.product-card .product-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.product-card h3 {
    color: #a855f7;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
}

.product-features-compact, .business-benefits-compact {
    margin: 1.5rem 0;
    background: rgba(139, 92, 246, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.product-features-compact h4, .business-benefits-compact h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-features-compact ul, .business-benefits-compact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.product-features-compact li, .business-benefits-compact li {
    font-size: 0.875rem;
    color: #e5e7eb;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.product-features-compact li:last-child, .business-benefits-compact li:last-child {
    border-bottom: none;
}

.time-savings {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    color: #34d399;
    font-size: 0.9rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.monthly-maintenance {
    font-size: 0.875rem;
    color: #a855f7;
    margin-bottom: 1.5rem;
    text-align: center;
    background: rgba(168, 85, 247, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
}

.demand-indicator {
    margin: 1.5rem 0;
    text-align: center;
}

.demand-high {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: #fbbf24;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.demand-extreme {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    color: #f87171;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.product-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Custom Solutions */
.custom-solutions {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.custom-content h3 {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.custom-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.custom-stats span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Implementation Process */
.implementation-process {
    padding: 6rem 0;
    background: rgba(139, 92, 246, 0.05);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

.step-content h4 {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.step-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-duration {
    background: rgba(139, 92, 246, 0.2);
    color: #a855f7;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

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

.footer-section h4 {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: #6b7280;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .featured-product {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .product-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .custom-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .product-features ul, .business-benefits ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .products-hero {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        padding: 1rem;
        background: rgba(139, 92, 246, 0.1);
        border-radius: 1rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 52px;
        border-radius: 0.75rem;
    }
    
    .btn:active {
        transform: translateY(1px);
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tier-header {
        margin: 2rem 0 1.5rem 0;
        padding: 1.5rem 1rem;
    }
    
    .tier-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .tier-header p {
        font-size: 1rem;
    }
    
    /* Mobile responsiveness fixes */
    .featured-product {
        padding: 2rem 1.5rem 1.5rem 1.5rem; /* Extra top padding for badge */
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-badge {
        left: 15px;
        top: -10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        z-index: 10;
    }

    .product-content {
        padding-top: 1.5rem; /* More padding on mobile */
    }

    .product-content h3 {
        margin-top: 1rem; /* More space on mobile */
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .product-tagline {
        font-size: 1rem;
        text-align: center;
        margin: 1rem 0 0.5rem 0; /* Better spacing */
        line-height: 1.3;
    }
    
    .product-description {
        font-size: 1rem;
        text-align: center;
        margin: 1rem 0 1.5rem 0;
        line-height: 1.6;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .product-stat {
        background: rgba(16, 185, 129, 0.1);
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }
    
    .product-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Mobile product card fixes */
    .product-card {
        padding: 2rem 1.5rem 1.5rem 1.5rem; /* Extra top padding */
        margin: 1rem 0; /* Consistent margin */
    }
    
    .product-card.premium-card {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem; /* More top padding for premium */
        margin: 1.5rem 0; /* More margin for premium */
    }

    .product-card .product-badge {
        left: 10px;
        top: -10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .product-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-tagline {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .product-features-compact, .business-benefits-compact {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .product-features-compact h4, .business-benefits-compact h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .product-features-compact li, .business-benefits-compact li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .product-price {
        font-size: 1.25rem;
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .monthly-maintenance {
        font-size: 0.8rem;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .time-savings {
        padding: 0.75rem 1rem;
        margin: 1rem 0;
        font-size: 0.8rem;
    }
    
    .demand-high, .demand-extreme {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .product-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .custom-solutions {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .custom-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .custom-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .custom-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .custom-stats span {
        font-size: 0.85rem;
        padding: 0.5rem;
        background: rgba(139, 92, 246, 0.1);
        border-radius: 0.5rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .dashboard-stat .stat-value {
        font-size: 1rem;
    }
    
    .dashboard-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .order-item {
        padding: 0.5rem 0;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .order-product {
        font-size: 0.8rem;
    }
    
    .order-status {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .implementation-process {
        padding: 3rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .step-duration {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .featured-product {
        padding: 1rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .custom-solutions {
        padding: 1.5rem 0.75rem;
    }
    
    .tier-header {
        padding: 1rem 0.75rem;
    }
    
    .tier-header h3 {
        font-size: 1.25rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
}

/* Smooth Scrolling with Fixed Navbar Offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for fixed navbar */
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px; /* Accounts for mobile navbar height */
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: translateY(-4px);
        transition: transform 0.1s ease;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: translateY(-1px);
        transition: transform 0.1s ease;
    }
}
