:root {
    --primary-color: #000000;
    --secondary-color: #ca0019;
    --accent-color: #333333;
    --gradient-1: linear-gradient(135deg, #ca0019, #a30015);
    --gradient-2: linear-gradient(135deg, #333333, #1a1a1a);
    --gradient-3: linear-gradient(135deg, #ca0019, #a30015);
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Garet', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

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

/* Header Styles */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

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

.contact-btn {
    position: relative;
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    z-index: 1;
    width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(202, 0, 25, 0.2);
}

.contact-btn:hover {
    background: #a30015;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(202, 0, 25, 0.3);
}

.contact-btn::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.social-icon {
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    line-height: 1;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

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

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Timeline Section */
.timeline {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.timeline h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.timeline-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-year {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.timeline-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.timeline-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.05;
    z-index: 0;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-swiper {
    padding: 2rem 0;
    margin: 0 -1rem;
    overflow: visible;
}

.benefits-swiper .swiper-slide {
    height: auto;
    padding: 1rem;
}

.benefit-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-item:hover::before {
    opacity: 0.05;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

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

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

.benefit-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-item .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.benefit-item .meta-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: var(--gradient-1);
    color: var(--white);
}

.benefit-item .meta-item svg {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.benefit-item .meta-item:hover svg {
    color: var(--white);
}

/* Swiper Navigation */
.benefits-swiper .swiper-button-next,
.benefits-swiper .swiper-button-prev {
    color: var(--secondary-color);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.benefits-swiper .swiper-button-next:after,
.benefits-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.benefits-swiper .swiper-button-next:hover,
.benefits-swiper .swiper-button-prev:hover {
    background: var(--gradient-1);
    color: var(--white);
}

/* Swiper Pagination */
.benefits-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.benefits-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.benefits-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-1);
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    text-align: center;
        gap: 4rem;
        padding-top: 21rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        order: 1;
        margin-bottom: 2rem;
        padding-top: 6rem;
}

    .hero-image {
        max-width: 250px;
        margin: 0 auto;
        order: 2;
        margin-top: 2rem;
        transform: scale(0.9);
    }

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

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

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

    .hero-badge {
        margin: 0 auto 2rem;
    }

    .benefits {
        padding: 4rem 0;
    }

    .benefits-swiper {
        padding: 1rem 0;
}

.benefit-item {
    padding: 2rem;
}

.benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-item h3 {
        font-size: 1.3rem;
}

    .benefits-swiper .swiper-button-next,
    .benefits-swiper .swiper-button-prev {
        display: none;
    }

    .logo img {
        height: 32px;
}

    .social-icons {
        display: none;
    }
}

/* Pricing Section */
.pricing {
    position: relative;
    background: var(--white);
    padding: 8rem 0;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.1;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-card .price {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card .price-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(202, 0, 25, 0.3);
}

/* CTA Section */
.cta {
    position: relative;
    background: var(--gradient-2);
    color: var(--white);
    padding: 8rem 0;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.1;
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta p {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta .btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(202,0,25,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta .btn:hover::before {
    left: 100%;
}

/* Footer Styles */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    flex: 1;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    border: none;
    border-radius: 25px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.newsletter-form button:hover {
    background: #a30015;
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }

    .logo img {
        height: 32px;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
    }

    .nav-links a::after {
        display: none;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        background: var(--secondary-color);
        border: none;
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-btn:hover {
        transform: translateY(-2px);
        background: #a30015;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .social-icons {
        display: none;
    }

    .footer-bottom {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .feature-grid,
    .pricing-grid,
    .benefits-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .typing-effect {
        white-space: normal;
        border-right: none;
        animation: none;
    }
    
    .feature-icon {
        animation: none;
    }

    .hero::before,
    .stats::before,
    .pricing::before,
    .cta::before {
        opacity: 0.1;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero .subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 8rem 0 8.625rem;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

/* Spezifische Hintergrundbilder für Feature Cards */
.feature-card:nth-child(1)::before {
    background-image: none;
}

.feature-card:nth-child(2)::before {
    background-image: none;
}

.feature-card:nth-child(3)::before {
    background-image: none;
}

.feature-icon {
    color: var(--secondary-color);
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

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

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0;
}

.pricing-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-icon {
    color: var(--secondary-color);
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

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

.pricing-card .price {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card .price-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(202, 0, 25, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.cta-section .btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero .subtitle {
        font-size: 1.2rem;
    }

    .features-grid,
    .pricing-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Parallax Scrolling */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Typing Animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--secondary-color);
    animation: 
        typing 3.5s steps(40, end),
        blink .75s step-end infinite;
}

/* Number Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Scroll Reveal Animation */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    animation: reveal 0.8s ease-out forwards;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(202,0,25,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Stats Counter */
.stats {
    padding: 6rem 0;
    background: var(--gradient-2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.1;
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats .section-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats .section-header p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats {
        padding: 4rem 0;
    }

    .stats .section-header h2 {
        font-size: 2rem;
}

    .stat-item {
        padding: 1.5rem;
    }

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

/* Bild-Galerie */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
    color: var(--secondary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.feature-meta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.meta-item svg {
    color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 20px;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.feature-item:hover .feature-icon::after {
    transform: translateX(100%);
}

/* Platforms Section */
.platforms {
    padding: 4rem 0;
    background: var(--light-gray);
}

.platform-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-width: 120px;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.platform-item svg {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.platform-item:hover svg {
    transform: scale(1.1);
}

.platform-item span {
    font-weight: 600;
    color: var(--text-color);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Feature Grid Updates */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 16px;
    color: var(--white);
}

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

.feature-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .platform-grid {
        gap: 1rem;
    }

    .platform-item {
        padding: 1.5rem;
        min-width: 100px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

/* Typewriter Section */
.typewriter-section {
    position: relative;
    background: var(--gradient-2);
    color: var(--white);
    padding: 6rem 0;
    overflow: hidden;
}

.typewriter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.typewriter-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    min-height: 3.5rem;
}

.static-text {
    color: var(--white);
    margin-right: 0.5rem;
}

.dynamic-text {
    color: var(--secondary-color);
    border-right: 3px solid var(--white);
    animation: blink 0.7s infinite;
}

.typewriter-description {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    min-height: 3rem;
}

@keyframes blink {
    50% { border-color: transparent; }
}

@media (max-width: 768px) {
    .typewriter-section {
        padding: 4rem 0;
    }

    .typewriter-text {
        font-size: 1.8rem;
    }

    .typewriter-description {
        font-size: 1rem;
    }
}

/* Flyout Menu */
.flyout-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.flyout-toggle {
    background: var(--gradient-1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.flyout-toggle:hover {
    width: 60px;
    background: var(--secondary-color);
}

.flyout-content {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.flyout-menu.active .flyout-content {
    right: 0;
}

.flyout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.flyout-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.flyout-close {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.flyout-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
    background: var(--gradient-1);
}

.contact-item:hover svg,
.contact-item:hover a,
.contact-item:hover span {
    color: var(--white);
}

.contact-item svg {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-item a,
.contact-item span {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .flyout-menu {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        z-index: 9999;
        transform: none;
    }

    .flyout-toggle {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10000;
        width: 40px;
        height: 40px;
    }

    .flyout-content {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        padding: 1.5rem;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .flyout-menu.active .flyout-content {
        right: 0;
        transform: translateX(0);
    }
}

.footer-section .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section .social-icon {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.footer-section .social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: var(--secondary-color);
}

.footer-section .social-icon svg {
    width: 24px;
    height: 24px;
} 