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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 3.5rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.dot {
    color: #7c3aed;
}

.subtitle {
    font-size: 1.05rem;
    color: #888;
    font-weight: 400;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    color: #7c3aed;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.card-desc {
    font-size: 0.85rem;
    color: #888;
    position: relative;
    z-index: 1;
}

/* Placeholder karta */
.card--soon {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.1);
}

.card--soon .card-icon {
    color: #555;
}

.card--soon .card-label {
    color: #888;
}

.card--soon:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: none;
    box-shadow: none;
    cursor: default;
}

.card--soon:hover::before {
    opacity: 0;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

footer a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #a78bfa;
}

/* Mobile */
@media (max-width: 500px) {
    h1 {
        font-size: 2rem;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 1.2rem;
    }
}
