:root {
    --primary-color: #0071ba;
    --primary-dark: #005a94;
    --accent-green: #2ea876;
    --accent-yellow: #e6b800;
    --bg-white: #ffffff;
    --bg-light: #f0f4f8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #666666;
    --header-height: 80px;
    --container-padding: 2rem;
    --border-radius: 8px;
}

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

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 0;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: auto;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 156px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    gap: 4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
}

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

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

/* Hero Section Base */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Trust Indicators im Hero */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.trust-item {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-item .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-item .label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-cta {
    margin-top: 3rem;
}

.hero-cta .cta-button.primary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    min-width: 250px;
}

.cta-note {
    color: var(--bg-white);
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
}

/* CTA Improvements */
.cta-subtitle {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    opacity: 0.9;
}

.final-cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    margin-bottom: 4rem;
    min-width: 280px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .header {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0;
        gap: 1rem;
    }

    .logo {
        height: 40px;
    }

    .logo img {
        max-width: 120px;
    }

    .nav-menu ul {
        gap: 1.5rem;
    }

    .hero-section {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        margin-bottom: 1rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .trust-item {
        padding: 1.25rem;
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .trust-item .number {
        font-size: 2.2rem;
        margin: 0;
    }

    .trust-item .label {
        font-size: 1rem;
        margin-left: 1rem;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .hero-cta .cta-button.primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }

    .cta-note {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 100vw;
        height: calc(100vh - var(--header-height));
        position: fixed;
        top: var(--header-height);
        left: -100vw;
        transition: transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateX(100vw);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .header {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0;
        gap: 1rem;
    }

    .logo {
        height: 40px;
    }

    .logo img {
        max-width: 120px;
    }

    /* Mobile Menu Button Display */
    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        padding: 1rem;
        text-align: center;
        font-size: 1.2rem;
        border-radius: var(--border-radius);
        transition: background-color 0.3s ease;
    }

    .nav-menu ul li a:hover {
        background-color: var(--bg-light);
    }

    /* Mobile Menu Animation */
    .menu-open .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* Hero Section Mobile */
    .hero-section {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .hero-content {
        margin: 0;
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        margin-bottom: 1rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .trust-item {
        padding: 1.25rem;
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .trust-item .number {
        font-size: 2.2rem;
        margin: 0;
    }

    .trust-item .label {
        font-size: 1rem;
        margin-left: 1rem;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .hero-cta .cta-button.primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }

    .cta-note {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 56px;
    }

    .header {
        padding: 0 0.75rem;
    }

    .logo {
        height: 32px;
    }

    .logo img {
        max-width: 100px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .hero-section {
        padding: 1rem 0.75rem;
    }

    .hero-content {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

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

    .trust-item {
        padding: 1rem;
    }

    .trust-item .number {
        font-size: 2rem;
    }

    .trust-item .label {
        font-size: 0.9rem;
    }

    .hero-cta .cta-button.primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    .nav-menu ul {
        gap: 1rem;
    }

    .nav-menu ul li a {
        padding: 0.875rem;
        font-size: 1.1rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
    background-color: #ffc800;
}

.cta-button.secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

section:not(.hero-section) {
    margin-top: 0;
}

section h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.benefits .container,
.quick-solution .container,
.future-proof .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits .container,
    .quick-solution .container,
    .future-proof .container {
        flex-direction: row;
        align-items: center;
    }

    .image-container,
    .content {
        flex: 1;
    }
}

/* Lists */
.benefits-list,
.future-proof-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li,
.future-proof-list li {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before,
.future-proof-list li::before {
    content: "✓";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline Section Styles */
.timeline-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
    position: relative;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
    padding: 2rem;
}

.timeline-step {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-step.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-duration {
    position: absolute;
    right: 2rem;
    top: 2rem;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-step h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-right: 120px;
}

.timeline-step p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Connector */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    opacity: 0.2;
}

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

    .timeline {
        margin: 2rem auto;
        padding: 1rem;
    }

    .timeline-step {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .timeline-duration {
        position: relative;
        right: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .timeline-step h4 {
        padding-right: 0;
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    .timeline-step p {
        font-size: 1rem;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}

.final-cta h2 {
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.final-cta .cta-subtitle {
    font-size: 1.2rem;
    margin: 0 0 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.final-cta .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    margin-bottom: 4rem;
    min-width: 280px;
}

.final-cta .trust-badges {
    margin-top: 3rem;
    width: 100%;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 1rem;
    }

    .final-cta h2 {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .final-cta .cta-subtitle {
        font-size: 1.1rem;
        margin: 0 0 1.5rem;
        padding: 0 1rem;
    }

    .final-cta .cta-button {
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 1rem 2rem;
        margin-bottom: 3rem;
    }
}

/* Trust Badges Section */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.badge {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-yellow));
    border-radius: 4px 4px 0 0;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.badge img {
    max-width: 85%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.badge:hover img {
    transform: scale(1.05);
}

/* Responsive Styles für Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }

    .badge {
        padding: 1.5rem;
    }

    .hero-illustration {
        width: 80%;
        right: -20%;
        bottom: -15%;
        opacity: 0.6;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 0.8rem;
    }

    section h2::after {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .badge {
        padding: 1.2rem;
        aspect-ratio: 16/9;
    }

    .logo {
        height: 40px;
    }

    .logo img {
        max-width: 120px;
    }

    .hero-illustration {
        display: none;
    }
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    footer {
        padding: 2.5rem 0;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0;
    }

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

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-links a {
        width: 100%;
        padding: 0.75rem;
        background: rgba(0,0,0,0.03);
        border-radius: 8px;
    }
}

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-step {
    position: relative;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.step-content {
    width: 45%;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-step:nth-child(odd) .step-content {
    margin-left: auto;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .step-marker {
        left: 30px;
        transform: none;
    }

    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

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

    .hero-content {
        padding: 1rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .badge {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    margin-left: 1rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        padding: 1rem;
        text-align: center;
        font-size: 1.2rem;
        border-radius: var(--border-radius);
        transition: background-color 0.3s ease;
    }

    .nav-menu ul li a:hover {
        background-color: var(--bg-light);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hamburger Animation */
    .menu-open .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .header .cta-button.primary {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 56px;
    }

    .timeline-container {
        padding: 1rem;
    }

    .timeline-step {
        padding: 1rem;
        margin: 1rem 0;
    }

    .timeline-step h4 {
        font-size: 1.1rem;
    }

    .logo {
        height: 28px;
    }
}

.icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card .icon,
.benefit-card .icon {
    display: block;
    margin: 0 auto 1.5rem;
}

/* Hover-Effekte für Icons */
.problem-card:hover .icon,
.benefit-card:hover .icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hero Illustrations */
.wave-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    mix-blend-mode: soft-light;
}

.hero-illustration {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 50%;
    max-width: 800px;
    height: auto;
    opacity: 0.85;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.hero-cta {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 1024px) {
    .hero-illustration {
        width: 35%;
        right: 2%;
    }
}

@media (max-width: 768px) {
    .hero-illustration {
        display: none;
    }
    
    .hero-content {
        padding: 0;
    }
}

/* Header CTA Button */
.header .cta-button.primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header .cta-button.primary {
        display: none;
    }
}

/* Funnel Modal */
.funnel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.funnel-modal.active {
    opacity: 1;
    visibility: visible;
}

.funnel-content {
    flex: 1;
    padding: 4rem 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.funnel-step {
    display: none;
    text-align: center;
    min-height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
}

.funnel-step.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.funnel-step h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    line-height: 1.3;
    margin: 0 0 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    padding-bottom: 0.5rem;
    position: relative;
}

.funnel-step h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.3;
    margin: 0 0 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.funnel-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.funnel-close:hover {
    background-color: var(--primary-dark);
    transform: rotate(90deg);
}

.funnel-close i {
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .funnel-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Über Uns Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,113,186,0.05) 0%, rgba(0,113,186,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-grid {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    margin-top: 3rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 40px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .feature-item {
        min-width: 260px;
        max-width: 300px;
    }
}

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

    .about-features {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-item {
        max-width: none;
        width: 100%;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-box {
        padding: 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-item i {
        font-size: 1.75rem;
    }

    .feature-item span {
        font-size: 1rem;
    }
}

.back-button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.back-button:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.back-button i {
    font-size: 1.1rem;
}

/* Anpassung der Submit-Button-Position */
.submit-form {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .back-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.embedded-funnel {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.embedded-funnel .funnel-step {
    padding: 2rem 1rem;
}

.embedded-funnel .funnel-step h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 600;
}

.embedded-funnel .funnel-step h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.embedded-funnel .funnel-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.embedded-funnel .funnel-option {
    background: var(--bg-white);
    border: 1px solid rgba(0, 113, 186, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px;
}

.embedded-funnel .funnel-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.embedded-funnel .funnel-option-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.embedded-funnel .funnel-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 186, 0.1);
}

.embedded-funnel .funnel-option.selected {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 113, 186, 0.1);
}

@media (max-width: 768px) {
    .embedded-funnel .funnel-options {
        grid-template-columns: 1fr;
    }

    .embedded-funnel .funnel-option {
        min-height: auto;
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .embedded-funnel .funnel-option i {
        font-size: 1.75rem;
        margin-bottom: 0;
        min-width: 40px;
    }

    .embedded-funnel .funnel-option-text {
        font-size: 1rem;
    }
}

/* Mobile Viewport Fix */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }

    .nav-menu {
        height: -webkit-fill-available;
    }
}

/* Mobile Media Queries */
@media screen and (max-width: 430px) {
    :root {
        --header-height: 60px;
        --container-padding: 1rem;
    }

    .container {
        padding: 0 var(--container-padding);
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .trust-item {
        padding: 1rem;
    }

    .trust-item .number {
        font-size: 2.5rem;
    }

    .trust-item .label {
        font-size: 0.9rem;
    }

    .cta-button.primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

.embedded-funnel .funnel-step h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.embedded-funnel .funnel-step h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.embedded-funnel .success-step {
    text-align: center;
    padding: 3rem 2rem;
}

.embedded-funnel .success-icon {
    color: #4CAF50;
    margin-bottom: 2rem;
}

.embedded-funnel .success-step h2 {
    color: #333;
    margin-bottom: 1rem;
}

.embedded-funnel .success-step p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Bestätigungsseite Styles */
.confirmation-section {
    padding: 6rem 0;
    min-height: calc(100vh - var(--header-height) - 300px);
    display: flex;
    align-items: center;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.confirmation-content .success-icon {
    color: var(--accent-green);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease;
}

.confirmation-content h1 {
    color: var(--text-dark);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.confirmation-content .lead-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.step-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.confirmation-cta {
    margin-top: 3rem;
}

.confirmation-cta .cta-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: inline-block;
    min-width: 200px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

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

    .confirmation-content {
        padding: 2rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .confirmation-cta .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .confirmation-section {
        padding: 3rem 1rem;
    }

    .confirmation-content {
        padding: 1.5rem 1rem;
    }

    .step-item {
        padding: 1.25rem;
    }

    .next-steps {
        margin: 3rem 0;
    }

    .confirmation-cta {
        margin-top: 2rem;
    }
}

.embedded-funnel .submit-button {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto;
    display: block;
}

.embedded-funnel .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
    background-color: #ffc800;
}

.embedded-funnel .submit-form {
    margin-top: 2rem;
    text-align: center;
} 