:root {
    --bg-color: #3b62ae;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-color: #ffffff;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.cta-button-small {
    border: 1px solid var(--card-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--text-color) !important;
}

.cta-button-small:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.badge {
    color: #8b5cf6;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.cta-button {
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.glowing-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

/* Services */
.services {
    padding: 8rem 5%;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 400;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.card p {
    color: var(--text-muted);
    font-weight: 300;
}

/* Contact */
.contact {
    padding: 8rem 5%;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact p {
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 5%;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--card-border);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

.visitor-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--text-color);
    z-index: 100;
    font-family: var(--font-main);
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}