@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.wa-hero-wrapper {
    width: 100%;
    background: #000000;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wa-hero-container {
    max-width: 1000px;
}

/* Badge Style */
.wa-hero-badge-wrap {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.wa-hero-badge {
    background: rgba(147, 51, 234, 0.15); /* Purple tint */
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.wa-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #c084fc;
    border-radius: 50%;
    display: inline-block;
}

/* Title Styles */
.wa-hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.wa-hero-grad-text {
    background: linear-gradient(to right, var(--wa-hero-grad-start), var(--wa-hero-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.wa-hero-desc {
    font-size: 20px;
    color: #888888;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 400;
}

/* Buttons */
.wa-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.wa-hero-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-hero-btn-primary {
    background: #ffffff;
    color: #000000;
}

.wa-hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.wa-hero-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.wa-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .wa-hero-title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    .wa-hero-desc {
        font-size: 18px;
    }
    .wa-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .wa-hero-btn {
        width: 100%;
        justify-content: center;
    }
}
