/* HERO SECTION STYLING */
:root {
    --primary-bg: #0f1117;
    --card-bg: #1a1d24;
    --accent-purple: #a855f7;
    --accent-purple-glow: rgba(168, 85, 247, 0.35);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-radius: 12px;
}

.badge-accent {
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--accent-purple) !important;
    color: var(--accent-purple) !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.65rem;
    line-height: 1.35;
}

.hero-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-checklist li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    color: var(--accent-purple) !important;
    font-weight: bold;
    flex-shrink: 0;
}

.hero-image-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
    display: inline-block;
    width: 100%;
}

.responsive-hero-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.btn-purple-glass {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    min-height: 32px !important;
    min-width: 110px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 3px 10px var(--accent-purple-glow) !important;
    white-space: nowrap !important;
}

.btn-purple-glass:hover {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%) !important;
    color: #ffffff !important;
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.6) !important;
}