/* 1. VARIABLEN & RESET */
:root {
    --bg-dark: #152038;
    --card-bg: #1e293b;
    --accent-blue: #3b82f6;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --border-color: #334155;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
}

/* 2. HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 70px;
    width: auto;
    display: block;
}

.lang-switch a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.lang-switch a:hover, .lang-switch a.active {
    color: var(--accent-blue);
}

/* 3. HERO SECTION */
.hero-section {
    text-align: center;
    padding: 30px 20px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.hero-title2 {
    font-size: clamp(2.2rem, 5vw, 2.0rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
}

.cta-area {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
}
 
/* ----------------- HOW TO IN 3x STEPS ------------------------- */

.process-section {
    padding: 10px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process-item {
    flex: 1 1 300px;
    text-align: center;
}

.process-image-container {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.process-image-container img {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.process-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.process-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
}

.process-image-container img {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-item:hover img {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

/* 4. ACCORDION */

.accordion-container {
    max-width: 1100px;
    margin: 10px auto 50px auto;
    padding: 0 20px;
}

.accordion-box {
    background: #1a202c;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 1000px;
}

.accordion-header-main {
    padding: 15px 20px;
    background: rgb(3, 61, 94);
    border-bottom: 1px solid var(--border-color);
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 1.0rem;
    text-align: center;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: flex 0.4s ease;
    overflow: hidden;
}

.item-trigger {
    height: 45px;
    min-height: 45px;
    background: rgb(18, 33, 56);
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.accordion-item.active { flex: 1; }

.accordion-item.active .item-trigger {
    background: rgb(87, 114, 155);
    color: #fff;
}

.item-content {
    flex: 1;
    padding: 25px;
    background: #222336;
    color: #d7e0f0;
    overflow-y: auto;
    display: none;
}

.accordion-item.active .item-content { display: block; }

pre { 
    white-space: pre-wrap; 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    font-size: 0.85rem; 
}

/* 5. TARGET GROUPS */

.target-group-section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    gap: 20px;
}

.target-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert den Inhalt horizontal im Flex-Container */
    flex: 1 1 300px;
    max-width: 450px;
}

.target-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dim);
    text-align: center;
    width: 100%; /* Sorgt dafür, dass der Text die volle Breite nutzt */
}

.target-item strong {
    color: #fff;
}

/* 6. PRICING SECTION */

.pricing-section {
    width: 100%;
    background-color: rgba(13, 19, 36, 0.8);
    padding-bottom: 30px;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
}

.pricing-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 850;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.pricing-title span {
    color: var(--accent-blue);
}

.pricing-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.card-header {
    margin-bottom: 25px;
}

.pricing-card h3 {
    font-size: 1rem;
    color: var(--text-dim);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 850;
    color: #fff;
    margin: 10px 0;
}

.credit-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.features li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: var(--accent-blue);
    margin-right: 10px;
    font-weight: bold;
}

.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
    color: #fff;
    background: transparent;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}

.btn-subline {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

.btn-pricing:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.btn-solid {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-solid:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* 7. RESPONSIVE */

@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion Styling */

.faq-section {
    width: 100%;
    background-color: rgba(13, 19, 36, 0.8);
    margin-top: 30px;
    padding-bottom: 10px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
}


.faq-headline {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 700;
}

/* DIE LISTE BLEIBT LINKSBÜNDIG */

.faq-list {
    border-top: 1px solid #333;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none !important;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: normal;
    padding-right: 30px; /* Platz zum Icon */
}

.faq-icon {
    color: #666;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 0 30px 0; /* Links bündig mit der Frage */
    color: #aaa;
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeIn 0.4s ease-out;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
