/* Home Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 85vh;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary-500);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 760px;
}

.gradient-text-primary {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-desc {
    font-size: 1.08rem;
    line-height: 1.82;
    color: var(--text-muted);
    margin: 0;
    max-width: 640px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

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

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gradient-card);
    border-color: var(--primary-500);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hero-products {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hero-product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.hero-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-product-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

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

.hero-product-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-product-icon.green {
    background: linear-gradient(135deg, #10B981 0%, #22C55E 50%, #84CC16 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35), 0 0 30px rgba(34, 197, 94, 0.2);
}

.hero-product-icon.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
}

.hero-product-icon.blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #06B6D4 100%);
}

.hero-product-icon.orange {
    background: linear-gradient(135deg, #F97316 0%, #F59E0B 50%, #EAB308 100%);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.45);
    outline-offset: 4px;
}

.hero-product-card:hover .hero-product-icon {
    transform: scale(1.08);
}

.hero-product-info {
    position: relative;
    z-index: 2;
}

.hero-product-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-main);
}

.hero-product-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hero-products {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 2.2rem);
        padding-bottom: 3.4rem;
        min-height: auto;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-grid {
        gap: 1.9rem;
    }

    .hero-content {
        gap: 1.2rem;
    }

    .hero-badge {
        padding: 0.5rem 0.95rem;
        font-size: 0.76rem;
    }

    .hero-title {
        font-size: 2.05rem;
        line-height: 1.14;
        letter-spacing: -0.035em;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.74;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.78rem;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 0.92rem 1.2rem;
        font-size: 0.94rem;
    }

    .hero-products {
        gap: 0.72rem;
    }

    .hero-product-card {
        padding: 0.92rem 0.95rem;
        gap: 0.82rem;
        border-radius: 18px;
    }

    .hero-product-icon {
        width: 42px;
        height: 42px;
        font-size: 1.18rem;
        border-radius: 14px;
    }

    .hero-product-info h4 {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .hero-product-info p {
        font-size: 0.84rem;
        line-height: 1.58;
    }
}
