:root {
    --brand-primary: #833ab4;
    --brand-secondary: #fd1d1d;
    --primary: var(--brand-primary);
    --secondary: var(--brand-secondary);
    --accent: #f56040;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-hero: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light);
    transform: skewY(-2deg);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.hero-mockup {
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.hero-mockup:hover {
    transform: scale(1.05);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-hero);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* White Label Section */
.white-label-box {
    background: var(--dark);
    color: white;
    padding: 80px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.white-label-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.3;
}

.wl-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.wl-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Buttons */
.btn-premium {
    background: var(--gradient-hero);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(253, 29, 29, 0.4);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* Footer */
footer {
    background: #020617;
    color: white;
    padding: 100px 0 40px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .white-label-box { padding: 40px; }
}
