/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFCC53;
    --primary-dark: #8E2430;
    --bg-dark: #1C1C1E;
    --bg-light: #F7EEEE;
    --text-dark: #1C1C1E;
    --text-light: #FFFFFF;
    --text-gray: rgba(255, 255, 255, 0.6);
    --gradient: linear-gradient(135deg, #FFCC53 0%, #FFB347 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Background Gradient & Particles */
html {
    scroll-behavior: smooth;
    background: transparent;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: transparent;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(to bottom, #1A0820 0%, #310A25 100%);
    /* Very Dark Purple oben -> Deep Mulberry/Plum unten */
}

/* Background Particles Canvas */
.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Optional: Radial Gradient Overlay für mehr Tiefe */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 30% 50%,
            rgba(255, 201, 74, 0.08) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 80%,
            rgba(255, 178, 61, 0.06) 0%,
            transparent 40%);
    pointer-events: none;
}

/* Content sollte über dem Hintergrund liegen */
.content-wrapper {
    position: relative;
    z-index: 1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1rem 0;
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(28, 28, 30, 0.8);
}

.navbar.hide-nav .nav-brand,
.navbar.hide-nav .nav-menu,
.navbar.hide-nav .mobile-menu-toggle {
    opacity: 0;
    visibility: hidden;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-section-title {
    position: fixed;
    left: 20px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, left 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    line-height: 1.5;
    text-align: left;
    width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: auto;
}

.navbar.hide-nav .nav-section-title {
    opacity: 1;
    visibility: visible;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 36px;
    margin-bottom: 0;
    display: block;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

/* Schwarze Schrift im Header auf der Hauptseite */
body:not(.legal-page-body) .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-download {
    background: var(--gradient);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-light);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-demo-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Record Button Container */
.record-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Wrapper für Button und Canvas für perfekte Zentrierung */
.button-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    /* Größe des Buttons */
    height: 200px;
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    /* Hinter dem Button */
}

/* Record Button */
.record-button {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC94A 0%, #FFB23D 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: visible;
    z-index: 10;
    box-shadow:
        0 0 50px rgba(255, 201, 74, 0.7),
        0 0 100px rgba(255, 201, 74, 0.5),
        0 0 150px rgba(255, 201, 74, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.record-button:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 60px rgba(255, 201, 74, 0.8),
        0 0 120px rgba(255, 201, 74, 0.6),
        0 0 180px rgba(255, 201, 74, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.record-button.recording {
    animation: pulse 1.2s ease-in-out infinite;
    box-shadow:
        0 0 70px rgba(255, 201, 74, 0.9),
        0 0 140px rgba(255, 201, 74, 0.7),
        0 0 200px rgba(255, 201, 74, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}



/* Button Core (Mikrofon Icon) */
.button-core {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-icon {
    width: 100px;
    height: 100px;
    stroke: #FFE082;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 2px rgba(255, 224, 130, 0.5));
    transition: stroke 0.3s ease;
}

.record-button.recording .mic-icon {
    stroke: #FFE082;
    animation: mic-pulse 1.2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 224, 130, 0.7));
}

@keyframes mic-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Record Hint Text */
.record-hint {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.features .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}

.features .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.features .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-align: left !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Zeilenumbrüche nur auf Mobile anzeigen */
.mobile-break {
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

/* Features Grid Wrapper */
.features-grid-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

.features-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
}

/* Mobile: Einfaches Sliden ohne Effekt */
@media (max-width: 922px) {
    .features-slider {
        transition: transform 0.3s linear !important;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 201, 74, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1rem;
}


/* Features Navigation */
.features-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2A2A2A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.5rem;
    font-weight: 300;
}

.nav-button:hover {
    background: #3A3A3A;
    border-color: rgba(255, 201, 74, 0.4);
    transform: scale(1.1);
}

.nav-button:active {
    transform: scale(0.95);
}

.nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* How it Works Section */
.how-it-works {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: var(--text-light);
}

.steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding: 2rem 0;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 201, 74, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 201, 74, 0.4);
}

.step-connector {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 201, 74, 0.5), rgba(255, 201, 74, 0.1));
    margin-top: 0.5rem;
    position: relative;
}


.step-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 201, 74, 0.1);
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}

.step:hover .step-icon {
    transform: translateY(-5px);
    background: rgba(255, 201, 74, 0.15);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    width: 100%;
    text-align: center;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}

.testimonials .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-align: left !important;
}

/* Testimonials Grid Wrapper */
.testimonials-grid-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

/* Mobile: Overflow visible für Scroll Snap */
@media (max-width: 922px) {
    .testimonials-grid-wrapper {
        overflow: visible !important;
    }
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.3s, border-color 0.3s;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 201, 74, 0.3);
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-light);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
}

.pricing .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    margin: 0;
    text-align: left !important;
}

.pricing .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.pricing-grid-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

/* Desktop: Grid Layout (kein Slider) */
.pricing-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    transition: none;
    transform: none !important;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    flex-shrink: 0;
    outline: none !important;
    box-shadow: none !important;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 201, 74, 0.3) 0%, rgba(255, 178, 61, 0.3) 100%);
    opacity: 0;
}

.pricing-card-basic {
    border: none;
}

.pricing-card-plus {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 201, 74, 0.5);
}

.pricing-card-plus::before {
    display: none;
}

/* Pricing Navigation - nur auf Desktop sichtbar, aber nicht benötigt da kein Slider */
.pricing-nav {
    display: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 0 20px;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFCC53 0%, #FFB347 100%);
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 201, 74, 0.4);
}

.pricing-header {
    margin-bottom: 2.5rem;
    padding-top: 0.5rem;
}

.pricing-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.pricing-title sup {
    font-size: 0.6em;
    vertical-align: super;
    opacity: 0.8;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}

.pricing-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 3;
}

.pricing-button {
    width: 100%;
    padding: 1.15rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    text-decoration: none;
}

.pricing-button-basic {
    background: rgba(255, 201, 74, 0.1);
    color: var(--primary-color);
    border: none;
}

.pricing-button-plus {
    background: linear-gradient(135deg, #FFCC53 0%, #FFB347 100%);
    color: var(--text-dark);
    border: 2px solid transparent;
    font-weight: 700;
}

.pricing-button-family {
    background: rgba(255, 201, 74, 0.1);
    color: var(--primary-color);
    border: none;
}

/* Mobile Responsive für Pricing */
@media (max-width: 968px) {
    .pricing-grid-wrapper {
        padding: 0;
        overflow: visible;
    }

    .pricing-slider {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        transform: none !important;
        width: 100% !important;
        padding: 0 20px !important;
        gap: 20px !important;
        scrollbar-width: none !important;
        transition: none !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .pricing-slider::-webkit-scrollbar {
        display: none !important;
    }

    .pricing-card {
        scroll-snap-align: center !important;
        flex: 0 0 85% !important;
        margin: 0 !important;
        min-width: auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 2rem;
    }

    .prev-button-pricing,
    .next-button-pricing {
        display: none !important;
    }
}

@media (max-width: 922px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing .section-header {
        margin-bottom: 3rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
        border-radius: 24px;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .pricing-features {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .pricing-feature {
        font-size: 1rem;
    }

    .pricing-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Download Section */
.download {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
    text-align: center;
}

.download .section-title,
.download .section-subtitle {
    color: var(--text-light);
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.download-btn svg {
    flex-shrink: 0;
}

.download-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-store {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tips & Tricks Section */
.tips-tricks {
    padding: 100px 0;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.tips-tricks .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}

.tips-tricks .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tips-tricks .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 1rem 0;
    text-align: left !important;
}

.tips-tricks .section-subtitle {
    text-align: left;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 0;
}

/* Tips Grid Wrapper */
.tips-grid-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

/* Grid-Modus: Overflow sichtbar für normale Darstellung */
@media (min-width: 769px) {
    .tips-grid-wrapper.grid-wrapper-mode {
        overflow: visible;
    }
}

.tips-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
}

/* Desktop: Grid-Modus wenn Slider deaktiviert (3 oder weniger Karten) */
@media (min-width: 769px) {
    .tips-slider.grid-mode {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
        transform: none !important;
        padding: 20px 20px 20px 20px;
        gap: 2rem;
    }

    .tips-slider.grid-mode .tip-card {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 1 !important;
    }
}

/* Mobile: Einfaches Sliden ohne Effekt */
@media (max-width: 922px) {
    .tips-slider {
        transition: transform 0.3s linear !important;
        display: flex !important;
    }
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Hover-Effekt entfernt - Kacheln haben keinen Hover mehr */

.tip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.tip-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tip-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    flex: 1;
}

.tip-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Languages Expand/Collapse für Mobile */
.tip-languages-wrapper {
    margin-top: 0.75rem;
}

.tip-languages-short {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.tip-languages-expanded {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Mobile: Kompaktere Formatierung für weniger Höhe */
@media (max-width: 922px) {
    .tip-languages-wrapper {
        margin-top: 0.4rem;
    }

    .tip-languages-short {
        line-height: 1.4;
        font-size: 0.85rem;
    }

    /* Erweiterte Liste auf Mobile ausblenden */
    .tip-languages-expanded {
        display: none !important;
    }

    /* Kompaktere Beschreibung für diese Kachel auf Mobile */
    .tip-card:has(.tip-languages-wrapper) .tip-description {
        line-height: 1.4;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }
}

/* Desktop: Kompaktere Formatierung der Sprachen - weniger Höhe */
@media (min-width: 769px) {
    .tip-languages-wrapper {
        margin-top: 0.5rem;
    }

    /* Sprachen in zwei Spalten, sehr kompakt - nur bis Arabisch */
    .tip-languages-short {
        display: block;
        columns: 2;
        column-gap: 1.5rem;
        line-height: 1.4;
        font-size: 0.85rem;
        text-align: left;
        margin: 0;
    }

    /* Erweiterte Liste auf Desktop immer sichtbar, aber kompakt */
    .tip-languages-expanded {
        max-height: none !important;
        margin-top: 0.4rem !important;
        overflow: visible !important;
        display: block;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Kompaktere Beschreibung für diese spezielle Kachel */
    .tip-card:has(.tip-languages-wrapper) .tip-description {
        line-height: 1.5;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
}

/* Toggle Button entfernt - nicht mehr benötigt */

/* Desktop: Erweiterte Liste immer sichtbar */
@media (min-width: 769px) {
    .tip-languages-expanded {
        max-height: none !important;
        margin-top: 0.4rem !important;
        overflow: visible !important;
    }
}

/* Tips Navigation */
.tips-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}

/* Navigation ausblenden wenn Slider nicht aktiv (3 oder weniger Karten auf Desktop) */
.tips-tricks .tips-nav.slider-disabled {
    display: none !important;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #ececec;
    color: var(--text-dark);
    position: relative;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-title-wrapper {
    position: sticky;
    top: 120px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0e1318;
    margin: 0;
    text-align: left;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 400;
    color: #373434;
    transition: color 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-question:hover {
    color: #373434;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #373434;
    opacity: 0.5;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 2000px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: #373434;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

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

.faq-answer ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.faq-answer ul li {
    color: #373434;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    font-weight: 600;
    opacity: 1;
}

.faq-divider {
    height: 1px;
    background: rgba(55, 52, 52, 0.15);
    margin: 0;
    width: 100%;
}

/* Footer - Standard: Weiße Schrift für Hauptseite */
.footer {
    background: transparent;
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    color: var(--text-light);
}

.footer-brand p {
    color: var(--text-gray);
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Footer auf Legal-Seiten: Schwarze Schrift */
body.legal-page-body .footer {
    color: var(--text-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.legal-page-body .footer-brand {
    color: var(--text-dark);
}

body.legal-page-body .footer-brand p {
    color: rgba(0, 0, 0, 0.6);
}

body.legal-page-body .footer-column h4 {
    color: var(--text-dark);
}

body.legal-page-body .footer-column a {
    color: rgba(0, 0, 0, 0.6);
}

body.legal-page-body .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 922px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .record-button-container {
        padding-top: 4rem;
        /* Mehr Platz nach oben auf Mobile */
        padding-bottom: 2rem;
    }

    .record-button {
        width: 160px;
        height: 160px;
    }

    .mic-icon {
        width: 80px;
        height: 80px;
    }

    .particle-canvas {
        width: 320px;
        height: 320px;
    }

    .features,
    .how-it-works,
    .testimonials,
    .tips-tricks,
    .download,
    .faq {
        padding: 60px 0;
    }

    .tips-tricks .section-header {
        text-align: left;
        margin-bottom: 3rem;
        padding-left: 20px;
    }

    /* Entfernt - nutzt die allgemeine .section-title Regel wie Testimonials */

    .tips-tricks .section-subtitle {
        font-size: 1rem;
        text-align: left;
    }

    .tips-grid-wrapper {
        padding: 0;
        overflow: visible;
    }

    /* Mobile Slider Fix */
    .tips-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        transform: none !important;
        width: 100% !important;
        padding: 0 20px !important;
        gap: 20px !important;
        scrollbar-width: none !important;
        transition: none !important;
    }

    .tips-slider::-webkit-scrollbar {
        display: none !important;
    }

    .tip-card {
        scroll-snap-align: center !important;
        flex: 0 0 85% !important;
        margin: 0 !important;
        min-width: auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 2rem;
    }

    /* Buttons auf Mobile ausblenden */
    .prev-button-tips,
    .next-button-tips {
        display: none !important;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title-wrapper {
        position: static;
    }

    .faq-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .faq-question {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }

    .faq-answer.active {
        padding: 0 0 1.25rem 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-answer ul {
        padding-left: 1.25rem;
    }

    .faq-answer ul li {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.1 !important;
        /* Verkürzter Zeilenabstand auf Mobile */
    }

    .tips-tricks .section-title,
    .pricing .section-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    /* Zeilenumbrüche für Überschriften auf Mobile */
    .mobile-break {
        display: block;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid-wrapper {
        padding: 0;
        overflow: visible;
    }

    /* === MOBILE SLIDER FIX === */
    /* Slider Container erlauben, seitlich zu scrollen */
    .features-slider,
    .testimonials-slider,
    .tips-slider {
        display: flex !important;
        overflow-x: auto !important;
        /* Erlaubt Scrollen */
        scroll-snap-type: x mandatory !important;
        /* Zwingt zum Einrasten */
        -webkit-overflow-scrolling: touch !important;
        /* Weiches Scrollen auf iOS */
        transform: none !important;
        /* Deaktiviert JS-Verschiebung */
        width: 100% !important;
        padding: 0 20px !important;
        /* Abstand links/rechts */
        gap: 20px !important;
        /* Abstand zwischen Karten */
        scrollbar-width: none !important;
        /* Scrollbalken verstecken (Firefox) */
        transition: none !important;
    }

    /* Scrollbalken verstecken (Chrome/Safari) */
    .features-slider::-webkit-scrollbar,
    .testimonials-slider::-webkit-scrollbar {
        display: none !important;
    }

    /* Die Karten selbst */
    .feature-card,
    .testimonial-card,
    .tip-card {
        scroll-snap-align: center !important;
        /* Karte stoppt immer genau in der Mitte */
        flex: 0 0 85% !important;
        /* Karte nimmt 85% der Breite ein, damit man die nächste sieht */
        margin: 0 !important;
        /* Kein Margin, wir nutzen gap */
        min-width: auto !important;
        width: auto !important;
        max-width: none !important;
    }

    /* Buttons auf Mobile ausblenden (man swipet ja) */
    .prev-button,
    .next-button,
    .prev-button-testimonials,
    .next-button-testimonials,
    .prev-button-tips,
    .next-button-tips {
        display: none !important;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .side-gradient {
        width: 100px;
    }

    .testimonials-grid-wrapper {
        padding: 0;
        overflow: visible;
    }

    .testimonials-slider {
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 2rem;
    }

    .steps {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .step {
        max-width: 100%;
        width: 100%;
        min-width: auto;
    }

    .step-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .step-connector {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-icon {
        display: none !important;
        /* Icons auf Mobile ausblenden */
    }

    .step-icon svg {
        display: none !important;
    }

    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .tips-tricks .section-title,
    .pricing .section-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-brand {
        font-size: 1.25rem;
    }

    .nav-section-title {
        display: block;
        left: 20px;
        font-size: 1rem;
    }

    .logo-image {
        height: 28px;
    }

    .footer-logo {
        height: 32px;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .record-button {
        width: 140px;
        height: 140px;
    }

    .mic-icon {
        width: 60px;
        height: 60px;
    }

    .particle-canvas {
        width: 280px;
        height: 280px;
    }

    .record-hint {
        font-size: 14px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card {
        min-width: 250px;
        width: calc(100vw - 40px) !important;
        /* Breiter für sehr kleine Screens */
        max-width: 400px;
        padding: 1.5rem;
        /* Höher machen - damit rechts nichts beschnitten wird */
        min-height: auto;
        height: auto;
    }

    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .plus-button {
        width: 35px;
        height: 35px;
        bottom: 1rem;
        right: 1rem;
    }

    .plus-button svg {
        width: 14px;
        height: 14px;
    }

    .side-gradient {
        width: 50px;
    }

    .feature-card h3,
    .step-content h3 {
        font-size: 1.25rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 0;
    }

    .faq-answer.active {
        padding: 0 0 1rem 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-answer ul {
        padding-left: 1rem;
    }

    .faq-answer ul li {
        font-size: 0.9rem;
    }
}

/* Hero Parallax Section - Wrapper für sticky scroll */
.hero-parallax-wrapper {
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Hero Parallax Section - normal scrolling */
.hero-parallax {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    /* Bilder müssen hinter dem Header sein - z-index niedriger als navbar */
    z-index: 1;
    /* Stelle sicher, dass der Container den ganzen Viewport füllt */
    width: 100%;
    background: transparent;
}

.parallax-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* Bilder müssen vollständig hinter dem Header sein */
    z-index: 0;
    /* Stelle sicher, dass der Container auch oben bei 0 beginnt */
    margin: 0;
    padding: 0;
    /* Stelle sicher, dass keine weiße Fläche sichtbar ist */
    background: transparent;
}

.parallax-video {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    object-position: center center;
    will-change: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
}

/* Desktop: Zeige nur Desktop-Video */
.parallax-video-desktop {
    display: block;
}

.parallax-video-mobile {
    display: none;
}

/* Mobile: Zeige nur Mobile-Video */
@media (max-width: 922px) {
    .parallax-video-desktop {
        display: none;
    }

    .parallax-video-mobile {
        display: block;
        /* Erweitere Video über Safe Area hinaus (iPhone Statusleiste) */
        height: 100dvh;
        min-height: 100dvh;
        /* Positioniere das Video so, dass es die gesamte Höhe abdeckt */
        top: 0;
        bottom: 0;
        /* Verwende env() für Safe Area Insets - erweitere nach oben und unten */
        margin-top: calc(-1 * env(safe-area-inset-top, 0px));
        margin-bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
        height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
        min-height: calc(100vh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
    }
}

/* Mobile Optimierung: Smartphone-Hintergrundbilder für mobile Geräte */
@media (max-width: 922px) {

    /* Fix 1: Body-Hintergrund - dunkle Farbe wie Background-Gradient (Fallback für iPhone Safari) */
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        min-height: 100% !important;
        /* Dunkle Farbe als Fallback - gleiche Farbe wie Background-Gradient unten */
        background: #310A25 !important;
        /* Deep Mulberry/Plum - untere Farbe des Gradients */
        background-color: #310A25 !important;
        position: relative !important;
    }

    /* Fix 2: Background-Ebenen wirklich über die ganze Seite legen - absolute statt fixed */
    .background-gradient,
    .background-particles,
    .background-overlay {
        position: absolute !important;
        inset: 0 !important;
        min-height: 100dvh !important;
        /* auf iPhone besser als 100vh */
        width: 100% !important;
        height: 100% !important;
    }

    /* Hero Parallax Wrapper - fullscreen, keine weiße Fläche */
    .hero-parallax-wrapper {
        background: #310A25 !important;
        /* Dunkle Farbe wie Body - verhindert Durchscheinen der nächsten Sektion */
        margin: 0 !important;
        padding: 0 !important;
        height: 100dvh;
        min-height: 100dvh;
        /* Erweitere über Safe Area */
        height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
        min-height: calc(100vh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
    }

    /* Fix 3: iPhone / vh Problem - verwende dvh statt vh */
    /* Hero Parallax - fullscreen, auch oben bei 0 (hinter Header) */
    .hero-parallax {
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
        height: 100dvh !important;
        /* moderne Lösung für iPhone */
        min-height: 100vh !important;
        /* Fallback */
        background: transparent !important;
        position: relative;
        /* Stelle sicher, dass unten keine nächste Sektion durchscheint */
        overflow: hidden;
        /* Erweitere über Safe Area */
        height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px)) !important;
        min-height: calc(100vh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px)) !important;
    }

    /* Parallax Container - fullscreen, auch oben bei 0 */
    .parallax-container {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100dvh !important;
        /* moderne Lösung für iPhone */
        min-height: 100vh !important;
        /* Fallback */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #310A25 !important;
        /* Dunkle Farbe wie Body - verhindert Durchscheinen */
        position: absolute;
        /* Erweitere über Safe Area */
        height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px)) !important;
        min-height: calc(100vh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px)) !important;
    }

    /* Parallax Video - fullscreen, auch oben bei 0 */
    .parallax-video {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100dvh !important;
        /* moderne Lösung für iPhone */
        min-height: 100vh !important;
        /* Fallback */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Stelle sicher, dass die Hero Section keine weiße Fläche hat */
    .hero {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* Untere Sektionen: gleiche Hintergrundfarbe wie im Web (transparent) */
    .features,
    .testimonials,
    .tips-tricks,
    .download,
    .how-it-works {
        background: transparent !important;
        /* Wie im Web - Background-Gradient wird sichtbar */
        background-color: transparent !important;
    }

    /* FAQ Section: gleiche Hintergrundfarbe wie im Web (#ececec) */
    .faq {
        background: #ececec !important;
        /* Wie im Web */
        background-color: #ececec !important;
    }

    /* Footer: gleiche Hintergrundfarbe wie im Web (transparent) */
    .footer {
        background: transparent !important;
        /* Wie im Web - Background-Gradient wird sichtbar */
        background-color: transparent !important;
    }

    /* Content Wrapper transparent */
    .content-wrapper {
        background: transparent !important;
        background-color: transparent !important;
    }
}

.hero-content-parallax {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Button soll im flex-Container bleiben, aber tiefer positioniert werden */
.hero-content-parallax .cta-button-parallax {
    position: relative;
    /* Relativ zum Container */
    margin-top: 50px;
    /* Mehr Abstand nach unten - tiefer positioniert */
    bottom: auto;
    /* Reset absolute positioning */
    left: auto;
    transform: none;
    /* Reset transform */
}

.hero-logo-parallax {
    width: 400px;
    max-width: 90%;
    height: auto;
    animation: fadeInDown 0.8s ease-out;
    margin-bottom: 20px;
}

.hero-subtitle-parallax {
    font-size: 20px;
    color: #000000;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 500;
}

.cta-button-parallax {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.9) !important;
    /* Weißer Hintergrund für bessere Lesbarkeit */
    backdrop-filter: blur(10px);
    /* Blur-Effekt für Lesbarkeit */
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #000000 !important;
    /* Schwarzer Rahmen */
    border-radius: 50px;
    color: #000000 !important;
    /* Schwarzer Text */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    /* Relativ zum flex-Container */
    z-index: 51;
    /* Über dem Scroll-Indicator */
}

.cta-button-parallax:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator-parallax {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    animation: bounce 2s infinite;
}

.scroll-indicator-parallax svg {
    width: 30px;
    height: 30px;
    stroke: #c084fc;
    fill: none;
    stroke-width: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 922px) {
    .hero-logo-parallax {
        width: 280px;
        max-width: 85%;
    }

    .hero-parallax {
        margin-top: 50px;
    }
}

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

.feature-card,
.testimonial-card,
.step {
    /* Keine Animation - Kacheln sind sofort sichtbar */
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Mobile menu animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Legal Pages (Datenschutz, Impressum, etc.) - Gleiche Hintergrundfarbe wie FAQ */
body.legal-page-body {
    background: #ececec !important;
    background-color: #ececec !important;
}

body.legal-page-body .background-gradient,
body.legal-page-body .background-particles,
body.legal-page-body .background-overlay {
    display: none !important;
}

body.legal-page-body .nav-section-title {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.legal-page-body .navbar.scrolled {
    background: transparent !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Header-Schriftfarbe auf Legal-Seiten schwarz */
body.legal-page-body .navbar {
    color: var(--text-dark) !important;
}

body.legal-page-body .nav-brand {
    color: var(--text-dark) !important;
}

body.legal-page-body .nav-menu a {
    color: var(--text-dark) !important;
}

body.legal-page-body .nav-menu a:hover {
    color: var(--primary-color) !important;
}

body.legal-page-body .mobile-menu-toggle span {
    background: var(--text-dark) !important;
}

.legal-page {
    padding: 80px 0 40px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background: #ececec !important;
    background-color: #ececec !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    color: #0e1318;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.legal-content h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.3;
}

.legal-intro {
    text-align: left;
    color: #6e6e73;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.legal-section h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.legal-section p {
    font-size: 0.95rem;
    color: #6e6e73;
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 0.875rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    font-size: 0.95rem;
    color: #6e6e73;
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.legal-section a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.legal-section a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.legal-section strong {
    color: #4a4a4a;
    font-weight: 600;
}

.legal-back {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(55, 52, 52, 0.15);
}

/* Mobile Styles für Legal Pages */
@media (max-width: 922px) {
    body.legal-page-body {
        background: #ececec !important;
        background-color: #ececec !important;
    }

    body.legal-page-body .background-gradient,
    body.legal-page-body .background-particles,
    body.legal-page-body .background-overlay {
        display: none !important;
    }

    .legal-page {
        padding: 80px 0 40px;
        background: #ececec !important;
        background-color: #ececec !important;
    }

    .legal-content {
        padding: 2rem 1.25rem;
        margin: 0;
        max-width: 100%;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .legal-content h1 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        text-align: left;
        color: #4a4a4a;
    }

    .legal-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        line-height: 1.4;
        color: #4a4a4a;
    }

    .legal-section h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        color: #4a4a4a;
    }

    .legal-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.875rem;
    }

    .legal-section ul {
        margin: 0.875rem 0;
        padding-left: 1.5rem;
    }

    .legal-section li {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.625rem;
    }

    .legal-section a {
        word-break: break-word;
    }

    .legal-back {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Desktop: Padding und Schriftgrößen für Legal Content anpassen */
@media (min-width: 769px) {
    .legal-content {
        padding: 2rem 2rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        color: #4a4a4a;
        text-align: left;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        color: #4a4a4a;
    }

    .legal-section h3 {
        font-size: 1.25rem;
        color: #4a4a4a;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}