:root {
    --primary-purple: #6f42c1;
    --dark-purple: #4b2c85;
    --light-purple: #f3f0ff;
    --accent-purple: #a885da;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(111, 66, 193, 0.2);
    --purple-glow: 0 8px 32px 0 rgba(111, 66, 193, 0.15);
}

body {
    background-color: #fdfbff;
    color: #2d1b4e;
    font-family: 'Inter', -apple-system, sans-serif;
}

.hero-purple {
    background: linear-gradient(135deg, #4b2c85 0%, #6f42c1 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-purple::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(168, 133, 218, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--purple-glow);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.btn-purple {
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

.btn-purple:hover {
    background: var(--dark-purple);
    color: white;
    transform: scale(1.05);
}

.section-title {
    color: var(--dark-purple);
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.navbar-purple {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-link-purple {
    color: var(--dark-purple) !important;
    font-weight: 600;
    margin: 0 10px;
}

.nav-link-purple:hover {
    color: var(--primary-purple) !important;
}
