/* Grundlegende Stile & Variablen */
:root {
    --primary-color: #04FFF7; /* Neon Türkis */
    --background-color: #121212;
    --text-color: #f4f4f4;
    --surface-color: #1e1e1e;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation (unverändert) */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: background-color 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
}

.logo {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 1rem;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}


/* Sektionen Allgemein */
section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Home Sektion */
#home {
    min-height: 100vh;
    text-align: center;
}

.hero-container p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(4, 255, 247, 0.3);
}

/* NEU: Angebote Sektion */
.angebot-kategorie {
    margin-bottom: 4rem;
}

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

.pricing-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card.recommended {
    border-color: var(--primary-color);
}

.pricing-card .badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card .price-info {
    font-size: 1rem;
    font-weight: normal;
    display: block;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card li i {
    color: var(--primary-color);
}

.pricing-card del {
    opacity: 0.7;
}

/* NEU: Partner Sektion */
#partners {
    min-height: 40vh;
}
.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}
.partner-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* NEU: Testimonial Sektion */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .author-name {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-card .review-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Bestehende Sektionen (unverändert) */
#about { text-align: center; }
.about-content { max-width: 800px; margin: 0 auto; }
#contact form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
#contact input, #contact textarea { width: 100%; padding: 0.8rem; background-color: var(--surface-color); border: 1px solid #333; border-radius: 5px; color: var(--text-color); }
#contact button { align-self: center; }
.whatsapp-button { position: fixed; bottom: 20px; right: 20px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4); transition: transform 0.3s; z-index: 99; }
.whatsapp-button:hover { transform: scale(1.1); }
footer { text-align: center; padding: 2rem; background-color: var(--surface-color); }

/* Responsive Design (unverändert) */
@media screen and (max-width: 768px) {
    .nav-links { position: fixed; right: 0; top: 0; height: 100vh; background-color: var(--background-color); display: flex; flex-direction: column; align-items: center; justify-content: space-around; width: 60%; transform: translateX(100%); transition: transform 0.5s ease-in; }
    .nav-links.nav-active { transform: translateX(0%); }
    .burger { display: block; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* Kontakt Sektion - Aktualisiert */
#contact form {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#contact label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ccc;
}

#contact input, 
#contact textarea,
#contact select {
    width: 100%;
    padding: 1rem;
    background-color: var(--surface-color);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact input:focus, 
#contact textarea:focus,
#contact select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(4, 255, 247, 0.5);
}

.form-group-consent {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-group-consent input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-color);
}

.form-group-consent label {
    margin: 0;
    font-weight: normal;
}

.form-group-consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-group-consent a:hover {
    text-decoration: underline;
}

#contact button {
    align-self: center;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.form-success-message {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}


/* Responsivität für das Formular */
@media screen and (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
/* Zentriert den Einleitungstext im Kontaktformular */
.contact-intro {
    text-align: center;
}
