/* CookMind Website CSS - Modernisiertes Design */
:root {
    /* Farb-HUE Werte für dynamische Hintergründe (0-360 Grad) */
    --primary-hue: 16;    /* Orange-Rot Bereich */
    --secondary-hue: 210; /* Blau */
    --accent-hue: 165;    /* Mint/Türkis */

    /* Hauptfarben - abgestimmt auf die App mit mehr Tiefe */
    --primary-color: #FF6B35;      /* Warmes Orange wie in der CookMind App */
    --primary-dark: #E55A24;       /* Dunkleres Orange für Hover-Effekte */
    --primary-light: #FF8B55;      /* Helleres Orange für Kontraste */
    
    --secondary-color: #4F7CAC;    /* Blauton aus der App */
    --secondary-dark: #3E6B9B;     /* Dunkleres Blau für Hover-Effekte */
    --secondary-light: #6F9CCB;    /* Helleres Blau für Kontraste */
    
    --accent-color: #36B5AB;       /* Türkis-Mint Akzentfarbe */
    --accent-dark: #269890;        /* Dunkleres Türkis */
    --accent-light: #5ECCC2;       /* Helleres Türkis */

    /* Zusätzliche thematische Farbtöne aus dem App-Design */
    --warm-orange: #FF9F59;        /* Helles, freundliches Orange */
    --cool-blue: #4B9CD3;          /* Frisches Blau */
    --nature-green: #5CBF69;       /* Organisches Grün */
    --dark-berry: #702F8A;         /* Tiefes Beerenviolett */
    
    /* Neutrale Farben für UI-Elemente */
    --text-color: #2D3748;          /* Dunkelgrau für Text */
    --text-light: #718096;          /* Helleres Grau für sekundäre Inhalte */
    --background-color: #F7FAFC;    /* Sehr helles Grau für Hintergründe */
    --card-background: #FFFFFF;     /* Weiß für Karten */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Schatten mit niedrigem Deckkraftgrad */

    /* Abstände und Größen */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    --container-width: 1200px;
    --container-padding: 20px;
    
    /* Übergänge und Animationen */
    --transition-quick: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    
    /* Z-Index Werte */
    --z-index-base: 1;
    --z-index-header: 1000;
    --z-index-dropdown: 1010;
    --z-index-modal: 1050;
    --z-index-tooltip: 1070;
}

/* Neue Keyframe-Animationen */
@keyframes字幕aufkommen {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes akzentWachsen {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes iconEinblendenSkalieren {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-15deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes mockupEinfädeln {
    0% {
        opacity: 0;
        transform: perspective(1500px) rotateX(25deg) rotateY(-20deg) scale(0.9) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: perspective(1500px) rotateX(15deg) rotateY(-10deg) scale(1.1);
    }
}

@keyframes subtilesSchweben {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background-pattern.svg');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal) ease;
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 1;
}

/* Glasmorphismus Header */
.glassmorphism-header {
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px var(--glass-shadow);
    position: sticky;
    top: 0;
    z-index: var(--z-index-sticky);
    transition: all var(--transition-normal) ease;
}

.glassmorphism-header:hover {
    box-shadow: 0 6px 25px var(--glass-shadow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: transform var(--transition-normal) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover .logo-img {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all var(--transition-normal) ease;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: -3px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all var(--transition-normal) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-text {
    position: relative;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal) ease;
    border-radius: 2px;
}

.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
    opacity: 1;
    transform: scale(1.2);
}

.nav-links a:hover .nav-text::after,
.nav-links a.active .nav-text::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: var(--z-index-dropdown);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-normal) ease;
    border-radius: 5px;
}

.menu-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu-btn.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Dekorative Elemente */
.page-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-circle-1 {
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, rgba(255,107,53,0) 70%);
    animation: float-slow 20s infinite ease-in-out;
}

.decoration-circle-2 {
    bottom: -150px;
    left: -50px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79,124,172,0.1) 0%, rgba(79,124,172,0) 70%);
    animation: float-slow 15s infinite ease-in-out reverse;
}

.decoration-circle-3 {
    top: 40%;
    left: 30%;
    width:
 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125,207,182,0.07) 0%, rgba(125,207,182,0) 70%);
    animation: float-slow 25s infinite ease-in-out;
}

/* Neu gestalteter Hero-Bereich */
.hero {
    min-height: 90vh; /* Reduzierte Höhe von 100vh auf 90vh */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        hsla(var(--primary-hue), 80%, 97%, 1) 0%,
        hsla(var(--secondary-hue), 60%, 97%, 1) 100%);
    z-index: 1;
    padding: 2rem 0; /* Padding hinzugefügt für kompakteres Layout */
}

/* Dynamischer Hintergrund mit Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, hsla(var(--primary-hue), 100%, 70%, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsla(var(--secondary-hue), 100%, 70%, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, hsla(var(--accent-hue), 100%, 70%, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: hintergrundPulsieren 15s infinite alternate ease-in-out;
}

@keyframes hintergrundPulsieren {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* Geometrische Formen im Hintergrund */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

.hero-particle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: -30px;
    background-color: var(--primary-color);
    animation: schwebenLinks 20s infinite alternate ease-in-out;
}

.hero-particle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -50px;
    background-color: var(--secondary-color);
    animation: schwebenRechts 25s infinite alternate-reverse ease-in-out;
}

.hero-particle:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    background-color: var(--accent-color);
    animation: schwebenLinks 22s infinite alternate ease-in-out;
}

.hero-particle:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    background-color: var(--primary-color);
    animation: schwebenRechts 18s infinite alternate-reverse ease-in-out;
}

@keyframes schwebenLinks {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

@keyframes schwebenRechts {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-30px, 30px) rotate(-15deg);
    }
}

/* Container mit 2-Spalten Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem; /* Reduzierter Abstand zwischen den Spalten */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem var(--spacing-lg); /* Reduziertes vertikales Padding */
    position: relative;
    z-index: 2;
}

/* Linke Spalte mit Text */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem; /* Etwas kleinere Schriftgröße */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem; /* Reduzierter Abstand */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: titelEinblenden 0.8s 0.2s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes titelEinblenden {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.6rem; /* Etwas kleinere Schriftgröße */
    font-weight: 500;
    margin-bottom: 1.2rem; /* Reduzierter Abstand */
    color: var(--text-color);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitelEinblenden 0.8s 0.5s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes subtitelEinblenden {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-accent {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.hero-subtitle-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    animation: akzentLinieZeichnen 0.5s 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes akzentLinieZeichnen {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: 1.1rem; /* Kleinere Schriftgröße */
    line-height: 1.6;
    margin-bottom: 2rem; /* Reduzierter Abstand */
    color: var(--text-light);
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px);
    animation: beschreibungEinblenden 0.8s 0.8s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes beschreibungEinblenden {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Verbesserte Hero-CTA-Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: ctaEinblenden 0.8s 1.1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn i {
    font-size: 18px;
}

.hero-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
}

.hero-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta-buttons .btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.hero-cta-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

@keyframes ctaEinblenden {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Anpassungen für die CTA-Buttons */
@media (max-width: 768px) {
    .hero-cta-buttons {
        gap: 12px;
    }
    
    .hero-cta-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Rechte Spalte mit App-Mockup */
.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    transform: perspective(1500px) rotateY(-8deg) rotateX(3deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease-out;
    opacity: 0;
    animation: mockupEinblenden 1.2s 0.5s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.mockup-container:hover {
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg) translateY(-5px);
}

@keyframes mockupEinblenden {
    0% {
        opacity: 0;
        transform: perspective(1500px) rotateY(-15deg) rotateX(8deg) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: perspective(1500px) rotateY(-8deg) rotateX(3deg) translateY(0);
    }
}

.mockup-shadow {
    position: absolute;
    top: 10%;
    left: 0;
    width: 90%; /* Kleinerer Schatten */
    height: 90%; /* Kleinerer Schatten */
    transform: translateZ(0);
    filter: blur(30px); /* Weniger Blur */
    background: var(--primary-color);
    opacity: 0.15; /* Reduzierte Opazität */
    z-index: 1;
    border-radius: 3rem;
}

.mockup-main {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1), /* Leichterer Schatten */
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    z-index: 2;
    transform: translateZ(30px); /* Etwas weniger 3D-Effekt */
}

/* Verbesserte positionierte schwebende Elemente */
.floating-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 10px 14px;
    transform: translateZ(60px);
    opacity: 0;
    animation: elementEinblenden 0.5s forwards ease-out;
    z-index: 10;
}

/* Spezifische Positionierung, um Überlagerung zu vermeiden */
.floating-element-1 {
    top: 12%;
    left: -12%;
    animation-delay: 1.3s;
}

.floating-element-2 {
    bottom: 15%;
    right: -8%;
    animation-delay: 1.6s;
}

@keyframes elementEinblenden {
    0% {
        opacity: 0;
        transform: translateZ(60px) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateZ(60px) translateY(0);
    }
}

.floating-element-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

.floating-element-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.floating-element-subtext {
    font-size: 11px;
    color: var(--text-light);
    display: block;
}

/* App-Badges */
.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 0; /* Kein zusätzlicher Abstand oben */
    opacity: 0;
    animation: badgesEinblenden 0.8s 1.4s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsive Anpassungen für den Hero-Bereich */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .mockup-container {
        max-width: 340px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        align-items: center;
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .mockup-container {
        max-width: 320px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }
    
    .app-feature-badges {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    /* Schwebende Elemente in der mobilen Ansicht ausblenden */
    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .mockup-container {
        max-width: 280px;
    }
    
    .app-feature-badges {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 460px;
    }
    
    .app-feature-badge {
        flex: 1 1 200px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 1rem var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .app-feature-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .app-feature-badge {
        width: 100%;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .mockup-container {
        transform: none !important;
        animation: none;
        opacity: 1;
        max-width: 240px;
    }
    
    .mockup-main {
        transform: none;
        border-radius: 1.5rem;
    }
    
    .mockup-shadow {
        display: none;
    }
}

/* Anpassungen für alte Hero Section klassen */
.hero-enhanced-background {
    background: none;
}

.hero-background-animation {
    display: none;
}

/* Features Section - Modernisiertes Design */
.features {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, 
        hsla(var(--secondary-hue), 70%, 98%, 1) 0%,
        hsla(var(--accent-hue), 60%, 97%, 1) 100%);
    overflow: hidden;
}

.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, hsla(var(--primary-hue), 100%, 70%, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, hsla(var(--secondary-hue), 100%, 70%, 0.07) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.features::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        hsla(var(--primary-hue), 80%, 97%, 1), transparent);
    z-index: 1;
}

.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title span.subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 0.4rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.2s forwards;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s forwards;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    animation: widthGrow 0.6s 0.8s forwards;
}

@keyframes widthGrow {
    to {
        opacity: 1;
    }
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.7;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.6s forwards;
}

.feature-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card.slide-up {
    animation: slideUp 0.8s forwards;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-cta {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-cta {
    color: var(--primary-dark);
}

.feature-card:hover .feature-cta i {
    transform: translateX(5px);
}

/* App Showcase Section */
.app-showcase {
    padding: 8rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, hsla(var(--secondary-hue), 100%, 70%, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, hsla(var(--primary-hue), 100%, 70%, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.app-showcase .section-title {
    text-align: left;
}

.app-showcase .section-title h2::after {
    left: 0;
    transform: none;
}

.showcase-features {
    margin: 2.5rem 0;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.showcase-content:hover .showcase-feature:nth-child(1) {
    animation: featureSlideIn 0.5s 0.1s forwards;
}

.showcase-content:hover .showcase-feature:nth-child(2) {
    animation: featureSlideIn 0.5s 0.2s forwards;
}

.showcase-content:hover .showcase-feature:nth-child(3) {
    animation: featureSlideIn 0.5s 0.3s forwards;
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.showcase-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 1.4rem;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.showcase-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.showcase-feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.showcase-image {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.showcase-mockup {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.showcase-image:hover .showcase-mockup {
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-10px);
}

.showcase-glow {
    position: absolute;
    bottom: -30px;
    left: 5%;
    width: 90%;
    height: 20px;
    background: var(--primary-color);
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.5s ease;
}

.showcase-image:hover .showcase-glow {
    opacity: 0.5;
    height: 30px;
}

/* Testimonials Section */
.app-testimonials {
    padding: 8rem 0;
    background: linear-gradient(to bottom, 
        white 0%,
        hsla(var(--accent-hue), 60%, 97%, 1) 100%);
    position: relative;
    overflow: hidden;
}

.app-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, hsla(var(--accent-hue), 100%, 70%, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, hsla(var(--primary-hue), 100%, 70%, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.testimonial-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.testimonial-nav-btn {
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    pointer-events: auto;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-nav-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn:hover::after {
    opacity: 1;
}

.testimonial-nav-btn i {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    opacity: 0;
    transform: translateX(100px) rotateY(10deg);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.01),
        0 30px 60px rgba(0, 0, 0, 0.05);
    border: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    z-index: 1;
}

.testimonial-avatar {
    flex: 0 0 120px;
    margin-right: 2rem;
    position: relative;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.05);
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 1rem;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagination-dot.active::after,
.pagination-dot:hover::after {
    opacity: 1;
}

.pagination-dot.active,
.pagination-dot:hover {
    transform: scale(1.3);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        hsla(var(--secondary-hue), 70%, 95%, 1) 0%,
        hsla(var(--primary-hue), 60%, 95%, 1) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/pattern-dots.svg');
    opacity: 0.1;
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
}

.cta-content.visible {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.8s ease;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-section .app-badge {
    width: 180px;
    transition: all 0.3s ease;
}

.cta-section .app-badge:hover {
    transform: translateY(-5px);
}

.subscription-form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscription-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    flex: 1;
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: var(--text-color);
    color: white;
}

.form-check {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-check input {
    margin-right: 0.5rem;
}

.form-check a {
    color: white;
    text-decoration: underline;
}

.newsletter-success {
    text-align: center;
    padding: 1rem;
}

.newsletter-success i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

/* Animation für Scroll-Effekte */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive-Anpassungen */
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .app-showcase .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-content {
        order: 1;
    }
    
    .showcase-image {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .showcase-mockup {
        transform: none;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-container {
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-navigation {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title span.subtitle {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
}

/* Javascript-Unterstützung */
.js-scroll {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.js-scroll.scrolled {
    opacity: 1;
}

.js-scroll--up {
    transform: translate3d(0, 50px, 0);
}

.js-scroll--up.scrolled {
    transform: translate3d(0, 0, 0);
}

.js-scroll--right {
    transform: translate3d(-50px, 0, 0);
}

.js-scroll--right.scrolled {
    transform: translate3d(0, 0, 0);
}

.js-scroll--left {
    transform: translate3d(50px, 0, 0);
}

.js-scroll--left.scrolled {
    transform: translate3d(0, 0, 0);
}

/* Erweiterte Stile für Buttons und interaktive Elemente */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(var(--primary-hue), 80%, 60%, 0.3);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(var(--secondary-hue), 80%, 60%, 0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Verbesserter Back-to-Top Button */
#back-to-top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: var(--z-index-fixed);
    opacity: 0;
}

#back-to-top.visible {
    bottom: 20px;
    opacity: 1;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(var(--primary-hue), 80%, 60%, 0.4);
}

/* Verbesserte Hover-Effekte für Karten und interaktive Elemente */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.interactive-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-card:hover::after {
    transform: scaleX(1);
}

/* Glasmorphismus-Effekte für moderne UI-Elemente */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Verbesserter Hover-Effekt für Feature-Karten */
.feature-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card.hovered, 
.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Verbesserte Dropdown/Menü-Stile */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(var(--primary-hue), 70%, 95%, 0.5);
    color: var(--primary-color);
}

/* Verbesserte Footer-Stile */
.site-footer {
    background: linear-gradient(135deg, #212529, #343a40);
    color: #fff;
    padding-top: 5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
    transform: rotate(180deg);
    opacity: 0.6;
}

.footer-wave svg {
    filter: blur(2px);
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-wave path {
    animation: waveAnimation 15s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes waveAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-app-badges img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-app-badges a:hover img {
    transform: scale(1.05);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Verbesserte Formulare */
.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(var(--primary-hue), 70%, 60%, 0.2);
    background-color: #fff;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
}

/* Animation für das neue Back-to-top Button */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

#back-to-top.bounce {
    animation: bounce 1s ease infinite;
}

/* Zusätzliche Animationen für Icon-Effekte */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse-icon {
    animation: pulse 2s ease infinite;
}

/* Hover-Icons mit Rotation */
.rotate-on-hover {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rotate-on-hover:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Dynamische Untermenüs */
.sub-menu-wrapper {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: var(--z-index-dropdown);
}

.sub-menu-trigger:hover + .sub-menu,
.sub-menu:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Feature-Icon-Animation */
.feature-icon i {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* Übergang zwischen Sektionen */
.section-transition {
    position: relative;
    height: 100px;
    margin-top: -50px;
    z-index: 1;
}

.section-transition svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: #fff;
}

/* Farbverlauf in Text */
.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Floating Labels für Formularfelder */
.form-floating {
    position: relative;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 15px;
    transform: translateY(50%);
    transition: all 0.3s ease;
    color: var(--text-light);
    pointer-events: none;
    background-color: transparent;
    padding: 0 5px;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label {
    transform: translateY(-50%) scale(0.85);
    background-color: white;
    color: var(--primary-color);
}

/* Hilfsklassen für Abstände */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

/* Zusätzliche media queries für bessere Responsivität */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Neue App-Feature-Badges im Hero-Bereich */
.app-feature-badges {
    display: flex;
    gap: 20px; /* Größerer Abstand zwischen den Badges */
    margin-bottom: 30px; /* Abstand zu den CTA-Buttons */
    margin-top: 10px;
}

.app-feature-badge {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.app-feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 20px;
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Anpassungen für die Badges */
@media (max-width: 768px) {
    .app-feature-badges {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .app-feature-badge {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .badge-icon {
        width: 32px;
        height: 32px;
    }
    
    .badge-icon i {
        font-size: 16px;
    }
    
    .badge-title {
        font-size: 13px;
    }
    
    .badge-subtitle {
        font-size: 11px;
    }
}

/* Scroll-Indikator mit Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-indicator-icon::after {
    opacity: 1;
}

.scroll-indicator-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover .scroll-indicator-icon i {
    color: white;
}

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

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator-icon {
        width: 36px;
        height: 36px;
    }
}

/* Verbesserte Feature-Karten */
.feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card.slide-up {
    animation: slideUp 0.8s forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 
        0 10px 20px rgba(var(--primary-hue), 80%, 60%, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.2;
    transform: rotate(30deg) translate(10%, 10%);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.feature-cta {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.feature-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-cta {
    color: var(--primary-dark);
}

.feature-card:hover .feature-cta i {
    transform: translateX(8px);
}

/* Verbesserte Section-Title Animation */
.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title span.subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 0.4rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.2s forwards;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s forwards;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    opacity: 0;
    animation: widthGrow 0.6s 0.8s forwards;
    box-shadow: 0 2px 4px rgba(var(--primary-hue), 70%, 60%, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-to-top-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.back-to-top-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.back-to-top:hover .back-to-top-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover .back-to-top-text {
    opacity: 1;
    transform: translateX(0);
}

.back-to-top i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-icon {
        width: 40px;
        height: 40px;
    }
    
    .back-to-top-text {
        display: none;
    }
}

/* Verbesserte responsive Anpassungen */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .hero-mockup img {
        max-width: 100%;
    }
    
    .floating-element-1 {
        top: 15%;
        left: -8%;
    }
    
    .floating-element-2 {
        bottom: 12%;
        right: -5%;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-mockup-container {
        order: 0;
        margin-bottom: 40px;
    }
    
    .app-feature-badges {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-nav {
        bottom: -30px;
    }
    
    .testimonial-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
        align-self: center;
    }
    
    .avatar-img {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-author {
        justify-content: center;
        align-items: center;
    }
    
    .testimonial-author::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .app-showcase-text {
        order: 1;
    }
    
    .app-showcase-mockup {
        order: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .app-feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-dots {
        display: none;
    }
    
    .hero::after,
    .features::after,
    .app-showcase::after {
        display: none;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title span.subtitle {
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Verbesserte Feature-Karten mit Interaktivität */
.feature-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 30px;
    background-color: rgba(var(--primary-hue), 80%, 97%, 0.3);
    transition: all 0.3s ease;
    width: fit-content;
}

.feature-cta:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(var(--primary-hue), 80%, 50%, 0.2);
}

.feature-cta i {
    transition: transform 0.3s ease;
}

.feature-cta:hover i {
    transform: translateX(4px);
}

/* Modal-Open Body State */
body.modal-open {
    overflow: hidden;
}

/* Toast-Nachricht für Demo-Feedback */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Share Dialog für Community Demo */
.share-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-dialog.show {
    opacity: 1;
}

.share-dialog-content {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 360px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-dialog.show .share-dialog-content {
    transform: scale(1);
}

.share-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.share-dialog-header h4 {
    margin: 0;
    font-size: 18px;
}

.close-dialog {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-color);
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: none;
    background-color: #f5f7fa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    text-align: left;
    transition: all 0.2s ease;
}

.share-option:hover {
    background-color: rgba(var(--primary-hue), 80%, 95%, 0.5);
}

.share-option i {
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: var(--primary-color);
}

/* Verbesserte Hover-Effekte für alle Feature-bezogenen Elemente */
.feature-card {
    cursor: pointer;
}