@charset "utf-8";
/* CSS Document */

        /* ── Process Timeline ── */
        .process-section {
            padding: 3rem 1.5rem 4rem;
            text-align: center;
        }

        .process-section h1 {
            font-size: 2rem;
            color: #4A4A4A;
            margin-bottom: 0.5rem;
        }

        .process-subtitle {
            color: #7a7a7a;
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        /* Timeline row */
        .process-steps {
			
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
            position: relative;
            max-width: 900px;
            margin: 4rem auto 3rem;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        /* Single SVG line behind all circles */
        .timeline-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            z-index: 0;
            overflow: visible;
        }

        .deco {
            position: absolute;
            z-index: 2;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .timeline-svg { display: none; }
            .deco { display: none; }
        }

        /* Circle */
        .step-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #FAF7F6;
            border: 2px solid #C5A992;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            margin-bottom: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .process-step:hover .step-circle {
            transform: scale(1.1);
            box-shadow: 0 6px 18px rgba(197, 169, 146, 0.4);
        }

        .process-step:hover .step-title {
            color: #C5A992;
        }

        .step-circle i {
            font-size: 1.5rem;
            color: #C5A992;
        }

        /* Number badge */
        .step-number {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #726F6C;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-title {
            font-weight: 600;
            color: #3d3d3d;
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .step-desc {
            color: #7a7a7a;
            font-size: 0.82rem;
            max-width: 140px;
            line-height: 1.4;
			text-align: center;
        }

        /* Detail cards */
        .process-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto 3rem;
            text-align: left;
        }

        .process-card {
            background: #fff;
            border-left: 4px solid #C5A992;
            border-radius: 4px;
            padding: 1.4rem 1.6rem;
        }

        .process-card h3 {
            color: #4A4A4A;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .process-card h3 .card-num {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #726F6C;
            color: white;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;

        }

        .process-card p {
            color: #555;
            font-size: 0.88rem;
            line-height: 1.65;
            margin: 0;
        }


		#psychotherapie-page .process-card p {
			font-size: 1rem;
		}

		.process-cards--three {
			grid-template-columns: repeat(3, 1fr);
		}

		@media (max-width: 768px) {
			.process-cards--three {
				grid-template-columns: 1fr;
			}
		}

@media (max-width: 768px) {
    .process-card [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

        /* CTA */
        .process-cta {
            margin-top: 1rem;
			align-content: center;
        }

        /* Info box */
        .info-box {
            background: #f0ebe7;
            border-radius: 6px;
            padding: 1.5rem 2rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            text-align: left;
        }

        .info-box h3 {
            color: #4A4A4A;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .info-box p {
            color: #555;
            font-size: 0.88rem;
            line-height: 1.65;
            margin: 0;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .process-step:not(:last-child)::after {
                top: calc(100% - 1rem);
                left: 50%;
                right: auto;
                width: 2px;
                height: 2rem;
            }

            .process-cards {
                grid-template-columns: 1fr;
            }

            .step-desc {
                max-width: 240px;
            }
        }

/* FAQ Accordion */
.faq-accordion {
    max-width: 	1000px;
    margin: 48px auto;
}
.faq-accordion h3 {
	font-size: 30px;
    text-align: center;
	font-weight: 700;
    margin-bottom: 14px;
    color: #4A4A4A;
}
.faq-item {
    border-bottom: 1px solid #C5A992;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
	font-weight: 600;
    padding: 16px 0;
    font-size: 1rem;
    color: #4A4A4A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: #C5A992;
    flex-shrink: 0;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 0 16px;
    color: #726F6C;
    line-height: 1.6;
}


.quick-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0.5rem 0 2rem;
    flex-wrap: wrap;
    font-weight: 600;
    font-family: var(--heading-font);
}
.quick-links .quick-link {
    color: #C5A992;
    text-decoration: underline;
    font-size: 1.1rem;
}
/*.quick-links .quick-link::before {
    content: "▼ ";
    text-decoration: none;
    display: inline-block;
    margin-right: 0.4rem;
}*/
.quick-links .quick-link:hover {
    color: #726F6C;
}
@media (max-width: 600px) {
    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

#ablauf, #angebot, #faq {
    scroll-margin-top: 120px;
}

@media (max-width: 1024px) {
    #ablauf, #angebot, #faq {
        scroll-margin-top: 90px;
    }
}


/* ── Schritte als Akkordeon (ersetzt .process-cards unter der Timeline) ── */
.step-question {
    gap: 16px;
    padding: 14px 0;
    align-items: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FAF7F6;
    border: 2px solid #C5A992;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C5A992;
    font-size: 1rem;
    position: relative;
}

.step-icon .step-number {
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
    top: -4px;
    right: -4px;
}

.step-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.step-title {
    font-weight: 600;
    color: #4A4A4A;
    font-size: 1.1rem;
}

.step-desc-inline {
    font-weight: 400;
    color: #9a9a9a;
    font-size: 0.82rem;
    margin-top: 2px;
}

.steps-accordion {
    max-width: 1000px;
    margin: 1.5rem auto 3.5rem;
}

/* ── Angebot-Karten mit Icon + Bulletpoints ── */
.process-card .offer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
}

.process-card .offer-icon {
    font-size: 1.3rem;
    color: #C5A992;
    margin: 0;
}

.process-card .offer-header h3 {
    margin: 0;
}

.process-card .offer-duration {
    color: #9a9a9a;
    font-size: 0.8rem;
    margin: 0 0 0.7rem;
}

.process-card ul.offer-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
}

.process-card ul.offer-list li::marker {
    color: #C5A992;
}

