:root {
    --primary: rgb(120,30,255);
    --primary-dark: rgb(70,15,150);
    --primary-light: rgb(170,120,255);
    --bg-dark: #0f0b1a;
    --bg-card: #1b132e;
    --text-light: #f5f3ff;
    --text-muted: #cfc7ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-light);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero p {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(120,30,255,0.3);
}

.card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cta {
    margin-top: 2rem;
}

.cta button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta button:hover {
    background: var(--primary-light);
    color: var(--bg-dark);
}
.build-note {
    background: rgba(120,30,255,0.15);
    border-bottom: 1px solid rgba(120,30,255,0.3);
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.build-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(69%) saturate(693%) hue-rotate(221deg) brightness(102%) contrast(101%);
}

footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
