/* ============================================================
   Landing Page Styles
   ============================================================ */

/* Stats Section */
.stats-section {
    margin-top: -40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.04);
}

.stat-item {
    background: var(--bg-primary);
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .stats-section { margin-top: -24px; padding-bottom: 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 24px 16px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .stat-item { padding: 20px 12px; }
    .stat-number { font-size: 1.3rem; }
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    background: var(--bg-primary);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.category-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    border-radius: var(--radius-lg);
    color: var(--brand-primary);
}

.category-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Product Card Placeholder */
.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

/* Product Card Link */
.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover { color: inherit; }

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 40%, #7c3aed 80%, #6d28d9 100%);
    color: var(--text-inverse);
    padding: 72px 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 32px;
    position: relative;
}

.cta-card .btn-primary {
    background: #ffffff;
    color: var(--brand-primary);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-card .btn-primary:hover {
    background: #f8f8ff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-card .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .cta-section { padding: 60px 0; }
    .cta-card { padding: 40px 24px; }
    .cta-card h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .cta-section { padding: 48px 0; }
    .cta-card { padding: 32px 20px; }
    .cta-card h2 { font-size: 1.3rem; }
    .cta-card p { font-size: 0.92rem; margin-bottom: 24px; }
}
