:root {
    --bg-dark: #0a0b1e;
    --card-bg: #161b33;
    --accent-pink: #ff007a;
    --accent-purple: #8a2be2;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gradient: linear-gradient(135deg, #ff007a 0%, #8a2be2 100%);
}

@font-face {     font-family: 'Inter';     src: url('fonts/Inter-VariableFont.woff2') format('woff2'),          url('fonts/Inter-Regular.woff') format('woff');     font-weight: 100 900; /* Unterstützt alle Stärken, falls es ein Variable Font ist */font-style: normal;     font-display: swap; /* Verhindert unsichtbaren Text während des Ladens */} /* Falls du separate Dateien für "Bold" hast: */@font-face {     font-family: 'Inter';     src: url('fonts/Inter-Bold.woff2') format('woff2');     font-weight: 700;     font-style: normal; font-display: swap; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 85%; max-width: 1200px; margin: auto; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* Buttons */
.btn-gradient {
    background: var(--gradient);
    border: none;
    padding: 14px 35px;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-white);
    padding: 14px 35px;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}
/* Hero Grundlayout */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("img/header.jpg") no-repeat center center/cover;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #d1d9e6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.btn-contact {
    background-color: #d63384;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
}

/* Text-Bereich */
.hero-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text h1 span {
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b0b8c4;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #d63384;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Container-Abstände für diesen Bereich */
.product-detail {
    padding: 100px 0;
}

/* Das blaue "PRODUKT"-Label oben links */
.label-blue {
    color: #4da6ff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 40px;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Bild-Styling */
.product-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    /* Optionaler sanfter Schwebe-Effekt */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* Text-Styling */
.product-info h2 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #c0c0c0; /* Hellgrau */
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.4;
}

.product-info p {
    font-size: 1rem;
    color: #a0a0a0; /* Etwas dunkleres Grau */
    line-height: 1.7;
    margin-bottom: 45px;
}

/* Pinker Button */
.btn-app-download {
    background-color: #d63384; /* Das spezifische Restflow-Pink */
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-app-download:hover {
    background-color: #bc2d73;
    transform: translateY(-2px);
}



/* Sektions-Layout */
.app-analysis {
    padding: 100px 0;
    text-align: left;
}

.analysis-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.analysis-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.analysis-header h3 {
    font-size: 1.3rem;
    color: #d1d9e6;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.analysis-header p {
    color: #8a94a6;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Das Showcase Grid */
.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

/* Spalten-Verhalten */
.feature-column {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Großer vertikaler Abstand zwischen den Icons */
}

/* Zentrierung der rechten Spalte */
.feature-column:last-child {
    text-align: left;
}

/* Feature Item Styling */
.app-feature {
    display: flex;
    flex-direction: column;
    align-items: center; /* Icons über Text zentrieren */
    text-align: center;
}

.app-feature img, .icon-placeholder {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(77, 166, 255, 0.4));
}

.app-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Smartphone Bild */
.app-mockup img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Footer Button */
.analysis-footer {
    margin-top: 40px;
}



.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.pricing-header h3 {
    color: #d1d9e6;
    font-weight: 300;
    margin-bottom: 20px;
}

.pricing-header p {
    color: #8a94a6;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Grid Layout */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 50px;
}

/* Basis Karten-Design */
.pricing-card {
    background: #161b33; /* Dunkler Kartenhintergrund */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 350px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hervorgehobene Karte (Mitte) */
.pricing-card.featured {
    border: 2px solid #d63384; /* Pinker Rand */
    transform: scale(1.05);
    background: linear-gradient(180deg, #161b33 0%, #1e244d 100%);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.2);
}

.plan-name {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.plan-desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 25px;
    min-height: 40px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Feature Liste */
.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1; /* Schiebt Button nach unten */
}

.plan-features li {
    color: #d1d9e6;
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8a94a6;
}

/* Buttons */
.btn-plan {
    width: 100%;
    background: rgba(214, 51, 132, 0.2);
    border: 1px solid #d63384;
    color: white;
    padding: 12px;
    border-radius: 50px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pink {
    background: #d63384;
}

.btn-plan:hover {
    background: #d63384;
    transform: translateY(-3px);
}

/* Container & Hilfsklassen */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Sub-Headline oben links */
.sub-headline {
    color: #4a90e2; /* Helleres Blau aus dem Screenshot */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

/* Die zentrale Karte */
.tech-card {
    background: #1c263d; /* Dunkles Blau/Grau */
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Linke Spalte */
.tech-left h2 {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
}

.tech-left h3 {
    font-size: 1.2rem;
    color: #b0b8c4;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.4;
}

.tech-left p {
    font-size: 0.95rem;
    color: #8a94a6;
    line-height: 1.6;
}

/* Rechte Spalte (Liste) */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #d1d9e6;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

/* Die kleinen Punkte vor der Liste */
.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.faq {
    padding: 100px 0;
}

.faq h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 600px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Die Karte */
.faq-item {
    background: rgba(28, 38, 61, 0.5); /* Glassmorphism Effekt */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
}

/* Plus/Minus Icon Animation */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

/* Horizontaler Balken */
.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertikaler Balken (für das Plus) */
.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Wenn aktiv: Verwandle Plus in X oder Minus */
.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-item.active .faq-icon::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Antwort-Bereich */
.faq-answer {
    max-height: 0;
    padding: 0 35px;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 1;
}

.faq-answer p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-section {
    padding: 100px 0 40px;
}

.contact-card {
    position: relative;
    background: #1c263d;
    border-radius: 30px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end; /* Inhalt am unteren Rand der Karte ausrichten */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hintergrundbild der Karte */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay für Textlesbarkeit */
.contact-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: linear-gradient(to top, rgba(15, 16, 26, 0.9) 20%, transparent 100%);
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #a0a0a0;
    max-width: 300px;
    line-height: 1.5;
}

/* Formular Design */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 1rem;
}

.form-group input, .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    color: white;
    outline: none;
}

.form-group input, .form-group select option{
	color: #000;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.85rem;
}

.btn-submit {
    background: #d63384;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    align-self: flex-start;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #4da6ff;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #4da6ff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Media Queries für Mobilgeräte */
@media (max-width: 850px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .app-mockup {
        order: -1; /* App Bild nach oben auf Mobile */
    }
    
    .feature-column {
        gap: 40px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Responsive Anpassung für Tablets/Smartphones */
@media (max-width: 992px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-card {
        padding: 40px 30px;
    }
    
    .tech-left h2 {
        font-size: 1.8rem;
    }
}

/* Responsivität für kleinere Bildschirme */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .product-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-info h2 {
        font-size: 2.5rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile Menu müsste ergänzt werden */
    .hero-text h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
}

/* Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr; }
    .reverse { direction: ltr; }
}