:root {
    --primary: #7c3aed;
    --secondary: #ec4899;
    --bg: #050505;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Blobs */
.blob-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: move 20s infinite alternate;
}

.blob-bg-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: move 25s infinite alternate-reverse;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* Navbar */
.navbar {
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover { opacity: 1; }

.talk-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 50px 10%;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 70vh;
}

.hero-left { flex: 1.2; }
.hero-right { flex: 0.8; }

.hero-left h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-left h1 span {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.primary-cta {
    padding: 18px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.hero-right .glass-container {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 20px;
    backdrop-filter: blur(40px);
    transform: perspective(1000px) rotateY(-15deg);
    transition: 0.5s;
}

.hero-right .glass-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-right img {
    width: 100%;
    border-radius: 30px;
}

/* Services section */
.services {
    padding: 100px 10%;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card-glass {
    flex: 1;
    padding: 40px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
}

.card-glass i {
    color: var(--primary);
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.active {
    border-color: var(--secondary);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-left h1 { font-size: 3.5rem; }
    .hero-left p { margin-inline: auto; }
    .cta-group { justify-content: center; }
    .services { flex-direction: column; }
    .navbar { padding: 30px 5%; }
}
