:root {
    /* Primärfarben */
    --color-primary: #45ACA6;
    --color-primary-hover: #3a9a94;
    
    /* Hintergrundfarben */
    --color-background: #FFFFFF;
    --color-background-secondary: #DEF0EC;
    --color-background-secondary-hover: #c8e0da;
    
    /* Textfarben */
    --color-text: #212121;
    --color-text-light: #FFFFFF;
    
    /* Akzentfarben */
    --color-accent: #EAC435;
    
    /* Fehler- und Erfolgsfarben */
    --color-success: #45ACA6;
    --color-success-background: #DEF0EC;
    --color-error: #c62828;
    --color-error-background: #ffebee;
    
    /* Border-Farben */
    --color-border: #DEF0EC;
    --color-border-focus: #45ACA6;
    
    /* Schriftarten - lokal verfügbare System-Schriftarten */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Schatten */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    padding-top: 0;
}

body:has(.hero) {
    padding-top: 0;
}

/* Serif Font für Headlines */
h1, h2, h3, .serif-headline {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Text-Elemente für Lesbarkeit begrenzen */
p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1,
.hero .subtitle {
    max-width: 100%;
}

.section-title {
    max-width: 100%;
}

section > .container > p,
section > .container > div > p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    color: #000000;
    display: inline-block;
}

/* Logo auf transparentem Header weiß, beim Scrollen schwarz */
header .logo {
    color: #FFFFFF;
}

header.scrolled .logo {
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icons svg {
    width: 100%;
    height: 100%;
    fill: var(--color-primary);
}

/* Social Icons auf transparentem Header weiß, beim Scrollen in Primärfarbe */
header .social-icons svg {
    fill: rgba(255, 255, 255, 0.9);
}

header.scrolled .social-icons svg {
    fill: var(--color-primary);
}

/* Language Toggle */
.language-toggle-wrapper {
    position: relative;
}

.language-toggle {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 120px;
    height: 40px;
    overflow: hidden;
}

header.scrolled .language-toggle {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-toggle:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

header.scrolled .language-toggle:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.language-toggle:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
}

header.scrolled .language-toggle:focus {
    border-color: var(--color-primary);
}

.toggle-indicator {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    transition: left 0.4s ease, background-image 0.4s ease, box-shadow 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    background-image: url('/imgs/turkiye.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header.scrolled .toggle-indicator {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-toggle[data-lang="de"] .toggle-indicator {
    left: calc(100% - 35px);
    background-image: url('/imgs/german.svg');
}

.language-toggle[data-lang="tr"] .toggle-indicator {
    left: 5px;
    background-image: url('/imgs/turkiye.svg');
}

.language-text {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--font-sans);
    transition: left 0.4s ease, color 0.4s ease;
    z-index: 1;
    white-space: nowrap;
}

.language-toggle[data-lang="de"] .language-text {
    left: 15px;
    color: #fff;
}

.language-toggle[data-lang="tr"] .language-text {
    left: 45px;
    color: #fff;
}

header.scrolled .language-text {
    color: var(--color-text);
}

header.scrolled .language-toggle[data-lang="de"] .language-text {
    color: var(--color-text);
}

header.scrolled .language-toggle[data-lang="tr"] .language-text {
    color: var(--color-text);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 17px;
    letter-spacing: 0.01em;
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 172, 166, 0.3);
}

.btn-secondary {
    background-color: var(--color-background-secondary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-background-secondary-hover);
}

/* Hero Section */
.hero {
    background-image: url('/imgs/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 50, 70, 0.75) 0%, rgba(30, 70, 90, 0.65) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    width: 100%;
}

.hero-date {
    font-size: 1rem;
    color: var(--color-accent) !important;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight-word {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #FFFFFF !important;
}

.hero h1 .highlight-word::before,
.hero h1 .highlight-word::after {
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    z-index: -1;
    border-radius: 100%;
    box-sizing: border-box;
}

.hero h1 .highlight-word::before {
    border: 0.3vw solid var(--color-accent);
    transform: rotate(0deg);
}

.hero h1 .highlight-word::after {
    border: 0.1vw solid var(--color-accent);
    transform: rotate(2deg);
}

.hero-info {
    font-size: 1rem;
    color: var(--color-accent);
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
}

/* Removed hero-price-sticker - replaced with hero-price-box */

@keyframes float {
    0%, 100% {
        transform: rotate(-8deg) translateY(0px);
    }
    50% {
        transform: rotate(-8deg) translateY(-10px);
    }
}

.hero-price-box {
    background-color: var(--color-accent);
    padding: 20px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-price-text {
    font-size: 1.2rem;
    color: var(--color-text) !important;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.3px;
}

.hero-info {
    font-size: 1.1rem;
    color: var(--color-accent) !important;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #FFFFFF !important;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .subtitle[data-translate="heroInfo"] {
    color: var(--color-accent) !important;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Benefits Bar */
.benefits-bar {
    background-color: var(--color-background);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.benefits-bar-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.benefit-bar-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.benefit-bar-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

.hero .btn {
    border-radius: 0;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-arrow:hover {
    opacity: 0.7;
}

.scroll-arrow svg {
    width: 32px;
    height: 32px;
    stroke: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Entry Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-fade-in-up {
    transform: translateY(30px);
}

.animate-fade-in-up.animated {
    transform: translateY(0);
}

.animate-fade-in-left {
    transform: translateX(-30px);
}

.animate-fade-in-left.animated {
    transform: translateX(0);
}

.animate-fade-in-right {
    transform: translateX(30px);
}

.animate-fade-in-right.animated {
    transform: translateX(0);
}

.animate-fade-in.animated {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

section:first-of-type {
    padding-top: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
}

.trust-header .section-title {
    margin-bottom: 24px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 720px;
}

/* Vertrauens-Section */
.trust-section {
    background-color: var(--color-background);
    padding: 100px 0;
}

.trust-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.trust-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.8;
    margin-top: 24px;
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.target-audience-card {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.target-audience-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.target-audience-card:nth-child(1) {
    transition-delay: 0.1s;
}

.target-audience-card:nth-child(2) {
    transition-delay: 0.2s;
}

.target-audience-card:nth-child(3) {
    transition-delay: 0.3s;
}

.target-audience-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--color-background-secondary);
}

.target-audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.target-audience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: var(--font-serif, serif);
}

.target-audience-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.7;
    margin: 0;
}

/* Vortrag Gliederung */
.vortrag-gliederung-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.vortrag-gliederung-section .trust-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.vortrag-gliederung-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.vortrag-gliederung-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.vortrag-gliederung-table-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    overflow-x: auto;
}

.vortrag-gliederung-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--color-background);
}

.gliederung-row {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    border-bottom: 2px solid var(--color-border);
}

.gliederung-row:last-child {
    border-bottom: none;
}

.gliederung-row.animated {
    opacity: 1;
    transform: translateY(0);
}

.gliederung-row:hover {
    background-color: var(--color-background-secondary);
}

.gliederung-row:nth-child(1) {
    transition-delay: 0.1s;
}

.gliederung-row:nth-child(2) {
    transition-delay: 0.2s;
}

.gliederung-row:nth-child(3) {
    transition-delay: 0.3s;
}

.gliederung-number-cell {
    width: 120px;
    padding: 30px 20px;
    vertical-align: top;
    text-align: center;
    border-right: 2px solid var(--color-border);
}

.gliederung-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-serif);
    border-radius: 0;
}

.gliederung-content-cell {
    padding: 30px;
    vertical-align: top;
}

.gliederung-content-cell h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 15px 0;
    font-family: var(--font-serif);
    text-align: left;
    line-height: 1.4;
}

.gliederung-content-cell p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.8;
    margin: 0;
    text-align: left;
}

/* Facts Section */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
}

.facts-grid-in-banner {
    margin: 50px auto 40px;
}

.fact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fact-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.fact-item:nth-child(1) {
    transition-delay: 0.1s;
}

.fact-item:nth-child(2) {
    transition-delay: 0.2s;
}

.fact-item:nth-child(3) {
    transition-delay: 0.3s;
}

.fact-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-serif);
    margin-bottom: 15px;
    line-height: 1;
}

.facts-grid-in-banner .fact-number {
    color: var(--color-primary);
}

.fact-label {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
    font-weight: 500;
}

.facts-grid-in-banner .fact-label {
    color: var(--color-text);
    opacity: 0.9;
}

/* Speaker Section */
.vortrag-speaker {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vortrag-speaker.animated {
    opacity: 1;
    transform: translateY(0);
}

.speaker-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speaker-content {
    text-align: left;
}

.speaker-content .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.speaker-content .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 10px;
}

.speaker-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.speaker-content .section-description {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Benefits Section */
/* CTA Banner Section */
.cta-banner-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--color-background-secondary);
}

.cta-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('/imgs/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-title {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.cta-banner-text {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-cta-banner {
    font-size: 18px;
    padding: 18px 50px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
    border-radius: 0;
}

.btn-cta-banner:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.benefits-section {
    background-color: var(--color-background);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    position: sticky;
    top: 100px;
}

.benefits-header .section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.benefits-header .section-title {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 24px;
    text-align: left;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.free-badge-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    display: inline-block;
    z-index: 0;
}

.free-badge-circle svg {
    width: 100%;
    height: 100%;
    animation: rotate-circle 10s linear infinite;
}

.free-badge-circle text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes rotate-circle {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    position: relative;
    padding-left: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefit-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    transition-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    transition-delay: 0.4s;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    color: #FFFFFF;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.7;
    margin: 0;
}

/* Deko-Elemente */
.deco-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
}

.deco-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-background-secondary);
    display: inline-block;
    margin: 20px 0;
}

.deco-square {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-background-secondary);
    position: absolute;
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-background-secondary);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--color-text);
    font-weight: 400;
}

.cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 100%;
}

.cta-section .btn {
    font-size: 18px;
    padding: 18px 50px;
    border-radius: 0;
}

/* Über Uns Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    max-width: 100%;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-images img:first-child {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-images img:first-child {
        margin-top: 0;
    }
}

/* Team Grid */
.team-section {
    background-color: var(--color-background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.6s ease-out;
    background-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.animated {
    opacity: 1;
    transform: translateY(0);
}

.team-member:nth-child(1) {
    transition-delay: 0.1s;
}

.team-member:nth-child(2) {
    transition-delay: 0.2s;
}

.team-member:nth-child(3) {
    transition-delay: 0.3s;
}

.team-member:nth-child(4) {
    transition-delay: 0.4s;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-member h3 {
    color: var(--color-text);
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-background);
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.form-event-info {
    background-color: var(--color-background-secondary);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0;
}

.form-event-info p {
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.form-event-info p:last-child {
    margin-bottom: 0;
}

.form-event-info strong {
    font-weight: 600;
    color: var(--color-primary);
}

.form-unverbindlich {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group label.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-border-focus);
    box-shadow: 0 0 0 3px rgba(69, 172, 166, 0.1);
}


.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--color-primary);
}

/* Footer */
footer {
    background-color: var(--color-background-secondary);
    color: var(--color-text);
    padding: 40px 0;
}

footer .container {
    text-align: left;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Intersection Observer Animation Helper */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .language-toggle {
        min-width: 100px;
        height: 36px;
    }
    
    .toggle-indicator {
        width: 28px;
        height: 28px;
    }
    
    .language-toggle[data-lang="de"] .toggle-indicator {
        left: calc(100% - 33px);
    }
    
    .language-text {
        font-size: 12px;
        left: 40px;
    }
    
    .language-toggle[data-lang="de"] .language-text {
        left: 12px;
    }
    
    .language-toggle[data-lang="tr"] .language-text {
        left: 40px;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
        padding-top: 100px;
    }
    
    .hero .container {
        padding-top: 20px;
    }
    
    .hero-date {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 .highlight-word::before {
        border-width: 2px;
    }
    
    .hero h1 .highlight-word::after {
        border-width: 1px;
    }
    
    .hero-price-box {
        padding: 16px 24px;
        margin-top: 25px;
        margin-bottom: 25px;
        width: 100%;
        text-align: center;
    }
    
    .hero-price-text {
        font-size: 1rem;
    }
    
    .hero-info {
        font-size: 0.95rem;
        margin-bottom: 16px;
        color: var(--color-accent) !important;
        font-weight: 600;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero .subtitle[data-translate="heroInfo"] {
        font-size: 1rem;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    
    .cta-banner-section {
        padding: 80px 0;
    }
    
    .cta-banner-background {
        height: 100%;
        background-attachment: scroll;
    }
    
    .cta-banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-banner-text {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .facts-grid-in-banner {
        margin: 30px auto 25px;
    }
    
    .btn-cta-banner {
        font-size: 16px;
        padding: 16px 40px;
    }
    
    .benefits-bar {
        padding: 30px 0;
    }
    
    .benefits-bar-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .benefit-bar-item {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .benefit-bar-item span {
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        bottom: 30px;
    }
    
    .scroll-arrow svg {
        width: 28px;
        height: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .target-audience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .target-audience-image {
        aspect-ratio: 1 / 1;
    }
    
    .target-audience-card h3 {
        font-size: 1.3rem;
    }
    
    .trust-header {
        margin-bottom: 40px;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 720px;
        margin: 0;
    }
    
    .benefits-header {
        position: relative;
        top: 0;
        text-align: left;
    }
    
    .benefits-header .section-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .benefits-header .section-subtitle {
        margin-top: 0;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .free-badge-circle {
        width: 80px;
        height: 80px;
        top: 0;
        right: 0;
    }
    
    .free-badge-circle text {
        font-size: 10px;
    }
    
    .benefits-header .section-title {
        margin-bottom: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefit-item {
        text-align: left;
        padding-left: 0;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .form-privacy {
        font-size: 0.75rem !important;
        margin-top: 10px;
        margin-bottom: 0 !important;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .target-audience-card p {
        font-size: 0.95rem;
    }
    
    .vortrag-gliederung-section .trust-header {
        text-align: left;
    }
    
    .vortrag-gliederung-section .section-subtitle {
        text-align: left;
    }
    
    .vortrag-gliederung-section .section-title {
        text-align: left;
    }
    
    .vortrag-gliederung-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .vortrag-gliederung-table-wrapper {
        margin-top: 40px;
    }
    
    .gliederung-number-cell {
        width: 80px;
        padding: 20px 15px;
    }
    
    .gliederung-number {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    .gliederung-content-cell {
        padding: 20px;
    }
    
    .gliederung-content-cell h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .gliederung-content-cell p {
        font-size: 0.95rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .facts-grid-in-banner {
        margin: 40px auto 30px;
    }
    
    .fact-number {
        font-size: 3rem;
    }
    
    .fact-label {
        font-size: 1rem;
    }
    
    .vortrag-speaker {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .speaker-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .speaker-content {
        text-align: center;
    }
    
    .speaker-content .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .speaker-content .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 8px;
    }
    
    .speaker-role {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    
    .speaker-content .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .logo {
        height: 36px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Success/Error Messages */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0;
    text-align: center;
}

.message-success {
    background-color: var(--color-success-background);
    color: var(--color-success);
}

.message-error {
    background-color: var(--color-error-background);
    color: var(--color-error);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.form-privacy {
    font-size: 0.75rem !important;
    color: var(--color-text);
    opacity: 0.6;
    margin-top: 12px;
    margin-bottom: 0 !important;
    text-align: center;
    line-height: 1.3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-privacy a:hover {
    color: var(--color-primary-hover);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease-out;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background-color: var(--color-background);
}

.courses-section-normal {
    background-color: var(--color-background-secondary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.courses-grid-normal {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
}

.course-card {
    background-color: var(--color-background);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Overlay entfernt - Bilder werden ohne Overlay angezeigt */

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.course-details {
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-details p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.6;
    max-width: 100%;
}

.course-details span:first-child {
    font-weight: 600;
    margin-right: 5px;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-family: var(--font-serif);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.course-price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.course-price-strikethrough {
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    font-family: var(--font-sans);
}

.btn-course {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-course:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 400;
}

.form-success p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 100%;
}

/* Mobile Styles for Courses */
@media (max-width: 768px) {
    .courses-section {
        padding: 40px 0;
    }
    
    .courses-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .courses-section .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .courses-grid-normal {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .course-image {
        height: auto;
    }
    
    .course-image img {
        height: auto;
    }
    
    .course-content {
        padding: 15px;
    }
    
    .course-name {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .course-details {
        margin-bottom: 15px;
    }
    
    .course-details p {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .course-price {
        font-size: 1.5rem;
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .course-price-current {
        font-size: 1.5rem;
    }
    
    .course-price-strikethrough {
        font-size: 1rem;
    }
    
    .btn-course {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* ========== Welcome Page (/welcome) ========== */
.welcome-page {
    padding-top: 0;
}

/* Hero Welcome: wie Index (Hintergrund + Overlay), H1 darüber, Video 16:9 darunter */
.hero.hero-welcome {
    min-height: auto;
    height: auto;
    padding: 140px 0 80px;
}

.hero-welcome-container {
    max-width: 1080px;
}

.hero-welcome-container h1 {
    margin-bottom: 32px;
}

.hero-welcome-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    background: #000;
    min-height: 0;
}

.hero-welcome-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-welcome-video-wrap p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    margin: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.9rem;
}

/* Partner-Einrichtungen: Logos zwischen Hero und Timeline */
.welcome-partners-section {
    padding: 72px 0 0;
    background: var(--color-background);
}

.welcome-partners-title {
    margin-bottom: 12px;
}

.welcome-partners-subtitle {
    margin-bottom: 48px;
}

.welcome-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 64px;
    max-width: 720px;
    margin: 0 auto;
}

.welcome-partner-logo {
    flex: 0 0 auto;
}

.welcome-partner-logo img {
    display: block;
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(0.15);
    opacity: 0.95;
}

.welcome-partner-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Timeline: vertikal, viel Weißraum, rot (Heimatland) → schwarz (Deutschland) */
.welcome-timeline-section {
    padding: 120px 0 160px;
    background: var(--color-background);
}

.container-timeline-vertical {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.welcome-timeline-section .welcome-timeline-title {
    margin-bottom: 20px;
}

.welcome-timeline-section .welcome-timeline-subtitle {
    margin-bottom: 100px;
}

.welcome-timeline-title,
.welcome-faq-title,
.welcome-booking-title {
    margin-bottom: 12px;
}

.welcome-timeline-subtitle,
.welcome-faq-subtitle,
.welcome-booking-subtitle {
    margin-bottom: 48px;
}

.welcome-timeline-section .section-subtitle {
    margin-bottom: 0;
}

.timeline-vertical {
    position: relative;
    margin-top: 64px;
    padding: 0 0 80px;
}

/* Linie statisch, kein Parallax */
.timeline-vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 8px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #c44 0%, #b33 38%, #1a1a1a 42%, #0d0d0d 100%);
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
}

.timeline-location {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px 16px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

.timeline-location-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.25;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.timeline-vertical .timeline-flag {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 72px;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
}

.timeline-flag-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.timeline-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    align-items: start;
    column-gap: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(56px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.timeline-row.timeline-inview {
    opacity: 1;
    transform: translateY(0);
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-row-flag {
    margin-bottom: 48px;
}

.timeline-row .timeline-dot {
    grid-column: 2;
    justify-self: center;
}

.timeline-row-left .timeline-card,
.timeline-row-left .timeline-location {
    grid-column: 1;
    justify-self: end;
}

.timeline-row-right .timeline-card,
.timeline-row-right .timeline-location {
    grid-column: 3;
    justify-self: start;
}

/* Flaggen-Zeilen: Standort (Türkei/Deutschland) in der Mitte auf der Linie, Punkt ausblenden */
.timeline-row-flag .timeline-location {
    grid-column: 2;
    justify-self: center;
}
.timeline-row-flag .timeline-dot {
    display: none;
}

.timeline-card-spacer {
    width: 100%;
    min-width: 0;
}

.timeline-row-left .timeline-card-spacer {
    grid-column: 3;
}

.timeline-row-right .timeline-card-spacer {
    grid-column: 1;
}

/* Parallax nur auf Cards (nicht auf Linie) */
.timeline-card {
    width: 100%;
    max-width: 320px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.timeline-card strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-row .timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.timeline-dot-flag {
    width: 32px;
    height: 32px;
    border-width: 5px;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 0 8px rgba(0,0,0,0.1);
}

.timeline-dot-home {
    background: #b33;
}

.timeline-dot-de {
    background: #1a1a1a;
}

.timeline-dot-last {
    background: #ffce00;
    border-color: #fff;
    box-shadow: 0 0 0 2px #1a1a1a;
}

.timeline-card p {
    margin: 0;
    max-width: 100%;
}

.timeline-card-highlight {
    border: 2px solid #ffce00;
}

.timeline-card-highlight strong {
    color: #1a1a1a;
}

/* FAQ */
.welcome-faq-section {
    padding: 80px 0;
    background: var(--color-background-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}

.faq-item {
    margin-bottom: 12px;
    background: var(--color-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform 0.25s;
}

.faq-question .faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-open {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 18px;
    padding-top: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    max-width: 100%;
}

/* Booking CTA */
.welcome-booking-section {
    padding: 80px 0;
    text-align: center;
    background: var(--color-background);
}

.welcome-booking-subtitle {
    margin-bottom: 24px;
}

.welcome-booking-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    text-align: left;
}

.welcome-booking-contact-img {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.welcome-booking-contact-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.welcome-booking-contact-subline {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
    opacity: 0.75;
}

.welcome-booking-contact-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line_height: 1;
    color: var(--color-text);
}

.welcome-booking-contact-details {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.welcome-booking-contact-link {
    color: var(--color-primary, #c41e3a);
    text-decoration: none;
}

.welcome-booking-contact-link:hover {
    text-decoration: underline;
}

.btn-booking {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero.hero-welcome {
        padding: 120px 0 48px;
    }
    .hero-welcome-container h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    .welcome-timeline-section {
        padding: 64px 0 100px;
    }
    .welcome-faq-section,
    .welcome-booking-section {
        padding: 48px 0;
    }
    .welcome-booking-contact {
        flex-direction: column;
    }
    .welcome-booking-contact-body {
        align-items: center;
        text-align: center;
    }
    .welcome-timeline-section .welcome-timeline-subtitle {
        margin-bottom: 60px;
    }
    .container-timeline-vertical {
        padding: 0 20px;
    }
    .timeline-vertical-line {
        left: 7px;
        transform: translateX(0);
    }
    /* Mobil: Flexbox – Punkt immer am oberen Card-Rand, feste Breite für Punkt-Spalte */
    .timeline-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }
    .timeline-card-spacer {
        display: none;
    }
    .timeline-row .timeline-dot {
        order: -1;
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        align-self: flex-start;
        margin: 0;
    }
    .timeline-row .timeline-card,
    .timeline-row .timeline-location {
        flex: 1;
        min-width: 0;
        width: auto;
        max-width: none;
        align-self: flex-start;
    }
    .timeline-row .timeline-card {
        padding: 20px 24px;
        font-size: 0.95rem;
        margin-top: 0;
    }
    .timeline-row-flag {
        margin-bottom: 40px;
        justify-content: center;
    }
    .timeline-row-flag .timeline-location {
        flex: 0 1 auto;
    }
    .timeline-location {
        gap: 12px;
        padding: 12px 18px 12px 12px;
        border-radius: 12px;
    }
    .timeline-vertical .timeline-flag {
        width: 56px;
        height: 39px;
        border-radius: 8px;
    }
    .timeline-location-text {
        font-size: 0.95rem;
        white-space: normal;
        max-width: 140px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    .faq-answer p {
        padding: 0 16px 14px;
    }
}
