:root {
    --primary: #6e48aa;
    --secondary: #9d50bb;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #41d8bf;
    --matrix-green: #0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Service Cards Section */
#services {
    padding: 100px 20px;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--accent);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

#services .section-subtitle {
    max-width: 960px;
}

#services .section-subtitle a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#services .section-subtitle a:hover {
    color: #5ee6d4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110,72,170,0.2) 0%, rgba(26,26,46,0) 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(110, 72, 170, 0.5);
}

.service-card:hover::before {
    transform: rotate(0deg) scale(1.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: #ddd;
    line-height: 1.6;
}

.price-tag {
    background: rgba(65, 216, 191, 0.2);
    color: var(--accent);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
    font-size: 0.9rem;
}

.price-guarantee {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(65, 216, 191, 0.1);
    border-radius: 10px;
    border: 1px solid var(--accent);
    max-width: 800px;
    margin: 50px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}