:root {
    --primary-color: #7F00FF;
    --secondary-color: #E100FF;
    --dark-text: #2d3436;
    --light-text: #636e72;
    --bg-light: #f9f9fb;
    --gradient-purple: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-purple);
    color: white;
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary-gradient {
    background: var(--gradient-purple);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 0, 255, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(225, 0, 255, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(127, 0, 255, 0.05), transparent 40%);
}

/* Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(127, 0, 255, 0.1);
    border-color: rgba(127, 0, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(127, 0, 255, 0.1);
    color: var(--primary-color);
}

/* Products Section */
.product-card {
    overflow: hidden;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-header {
    background: var(--gradient-purple);
    color: white;
    padding: 30px;
    text-align: center;
}

.product-body {
    padding: 40px;
    background: white;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
}

