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

.wa-asp-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Header Section */
.wa-asp-header {
    max-width: 900px;
    margin: 0 auto 100px;
}

.wa-asp-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.wa-asp-hero-title .white-text {
    color: #ffffff;
}

.wa-asp-hero-title .purple-text {
    color: #a855f7; /* Volandex Purple */
}

.wa-asp-hero-desc {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
    font-weight: 400;
}

.wa-asp-hero-sub {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
    margin-top: 15px;
}

/* Subtitle Section */
.wa-asp-subtitle {
    display: inline-block;
    margin: 40px auto 30px;
    position: relative;
    text-align: center;
}

.wa-asp-subtitle h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.wa-asp-subtitle .purple-line {
    width: 40px;
    height: 4px;
    background-color: #a855f7;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards Grid */
.wa-asp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 80px auto 0;
}

/* Individual Card */
.wa-asp-card {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wa-asp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
}

.wa-asp-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #a855f7;
}

.wa-asp-icon-box img, .wa-asp-icon-box svg {
    max-width: 24px;
    max-height: 24px;
}

.wa-asp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.wa-asp-card-desc {
    font-size: 15px;
    color: #888888;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .wa-asp-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
    }
    .wa-asp-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .wa-asp-wrapper {
        padding: 60px 20px;
    }
    .wa-asp-hero-title {
        font-size: 36px;
    }
    .wa-asp-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
}
