/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background-color: #0e0e11;
    color: #ffffff;
}

/* ACCENT COLOR */
:root {
    --accent-color: #a78bfa;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(14,14,17,0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
}

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* NAVIGATION */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* HERO */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #b3b3b3;
}

/* HERO BUTTON */
.hero-button {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(90deg, #a78bfa, #7c3aed);
    color: #ffffff;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.6);
}

/* SERVICES */
.services {
    padding: 80px 20px;
    background-color: #0f0f14;
}

.services .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.services-intro {
    color: #b0b0b0;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-card {
    background: #08080a;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* SERVICES CTA */
.services-cta {
    margin-top: 60px;
    text-align: center;
}

/* BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    border: 1.5px solid var(--accent-color);
    background: transparent;
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}

/* CONTENT SECTIONS */
.content-section {
    padding: 60px 20px;
    background-color: #0f0f14;
}

.content-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* CONTACT FORM */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.contact-form {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #121218;
    border: 1px solid #2a2a35;
    padding: 15px;
    color: #fff;
}

.contact-form button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}

/* DSGVO CHECKBOX */
.dsgvo-checkbox {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: #bdbdbd;
}

/* FOOTER */
.footer {
    background: #08080a;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background: #0e0e11;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}












