body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    background: var(--bs-body-bg);
}
.glass-nav {
    background: var(--bs-body-bg);
    opacity: 0.95;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(93, 135, 255, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(93, 135, 255, 0.05), transparent 40%);
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--bs-heading-color);
}
.text-gradient {
    background: linear-gradient(135deg, #5d87ff 0%, #4e73df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-premium {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium-primary {
    background: #5d87ff;
    color: white;
    box-shadow: 0 10px 20px rgba(93, 135, 255, 0.2);
}
.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(93, 135, 255, 0.3);
    background: #4e73df;
    color: white;
}
.feature-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
    background: var(--bs-card-bg);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(93, 135, 255, 0.2);
}
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.hero-img-wrapper {
    position: relative;
    z-index: 1;
}
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(93, 135, 255, 0.1) 0%, transparent 70%);
    top: -20%;
    left: -20%;
    z-index: -1;
}
