/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-note,
.faq-helper {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #171b23);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    color: #fff;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 28px auto 0;
    max-width: 860px;
    padding: 18px 22px;
    text-align: center;
}

.pricing-note span,
.faq-helper span {
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-note strong {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    max-width: 1040px;
}

.pricing-card {
    border-left: 0;
    border-top: 3px solid var(--secondary-color);
    border-radius: 22px;
    align-self: start;
}

.pricing-card.active {
    grid-row: span 2;
}

.pricing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 26px;
}

.pricing-cta .btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-cta .btn-outline-dark:hover {
    background: var(--primary-color);
    color: #fff;
}

.faq-helper {
    background: var(--atelier-paper, #fffaf0);
    border-color: rgba(212, 175, 55, 0.30);
    color: var(--primary-color);
}

.faq-helper a {
    color: var(--primary-color);
    font-weight: 900;
    text-decoration: none;
}

.faq-item {
    background: white;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(44, 48, 58, 0.08);
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-left-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: var(--font-body);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Dreht das "+" zu einem "x" */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: var(--atelier-paper, #fdfaf6); /* Leichter Stoff-Look Hintergrund */
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 15px;
    font-size: 0.95rem;
}

/* Preislisten innerhalb des Akkordeons */
.faq-answer .price-list {
    padding: 0 25px 20px 25px;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
    padding-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-row span:last-child {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 15px;
    font-size: 1.05rem;
}

.price-note {
    padding: 0 25px 25px;
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-note,
    .faq-helper {
        align-items: stretch;
        flex-direction: column;
    }
}
