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

:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #fff;
    --muted: #666;
    --card-bg: #111;
    --border: #222;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.tagline {
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero {
    text-align: center;
    padding: 3rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--accent);
}

.subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 4rem 0;
}

.service {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
    text-align: center;
}

.service:hover {
    border-color: var(--accent);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.service h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.contact {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 4rem 0;
    border: 1px solid var(--border);
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-item i {
    opacity: 0.8;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

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

footer {
    text-align: center;
    padding: 3rem 0 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    line-height: 1.8;
}

footer a {
    color: var(--muted);
    text-decoration: none;
}

/* Logo animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Media queries */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}