@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #9b59b6;
    --dark-purple: #7d3c98;
    --light-purple: #bb6bd9;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-text span {
    color: var(--purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--purple);
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d1f 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--purple);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    color: var(--purple);
}

.hero p {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-visual {
    display: none;
}

.btn {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 8px;
    display: inline-block;
}

.btn-primary {
    background: var(--purple);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: var(--purple);
    color: white;
}

/* Section */
.section {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--purple);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 1.05rem;
    color: #999999;
    line-height: 1.8;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 35px;
    background: rgba(155, 89, 182, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(155, 89, 182, 0.15);
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(155, 89, 182, 0.08);
    border-color: var(--purple);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.card-content h3,
.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p,
.card p {
    color: #999999;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #999999;
}

.cta-content .btn-primary {
    background: var(--purple);
    color: white;
}

.cta-content .btn-primary:hover {
    background: var(--dark-purple);
}

.cta-visual {
    display: none;
}

/* Footer */
footer {
    background: #000000;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
}

footer p {
    color: #666666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}
