:root {
    /* Blautöne */
    --color-blue-dark: #357ABD;
    --color-blue-medium: #4A90E2;
    --color-blue-light: #5BA4E8;
    --color-blue-shadow-button: rgba(74, 144, 226, 0.35);
    --color-blue-accent: rgba(90, 164, 232, 0.15);
    
    /* Grautöne */
    --color-gray-bg: #f8f9fb;
    --color-gray-text: #333;
    --color-gray-nav: #555;
    --color-gray-subtitle: #666;
    --color-gray-heading: #2c3e50;
    --color-gray-placeholder: #c5cdd6;
    --color-gray-dot: #d5dce3;
    --color-gray-line: #d5dce8;
    --color-gray-footer: #9ba5b0;
    --color-gray-border: #e5e7eb;
    --color-gray-border-light: #d5dce3;
    
    /* Weiß/Transparent */
    --color-white: #ffffff;
    --color-white-nav: rgba(255, 255, 255, 0.75);
    --color-white-border: rgba(255, 255, 255, 0.5);
    --color-white-hover: rgba(255, 255, 255, 0.2);
    
    /* Schwarz/Transparent (Schatten) */
    --color-shadow-light: rgba(0, 0, 0, 0.05);
    --color-shadow-medium: rgba(0, 0, 0, 0.08);
    --color-shadow-button: rgba(0, 0, 0, 0.15);
}

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

html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    background: var(--color-gray-footer);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-gray-bg);
    color: var(--color-gray-text);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Liquid Glass Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white-nav);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--color-white-border);
    box-shadow: 0 2px 20px var(--color-shadow-light);
    padding: 12px 40px 12px 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #5094db;
    gap: 2px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo,
.logo:visited,
.logo:active {
    color: #5094db;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -2px; /* 2px nach unten verschoben (von -3px zu -1px) */
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 100px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-gray-nav);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s;
}

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

.nav-menu a.active {
    color: var(--color-blue-medium);
}

/* Zentrale Button-Definition - wird von allen blauen Buttons verwendet */
.btn-contact,
.button-blue {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    color: var(--color-white);
    padding: 8px 22px; /* Standard Padding */
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    height: 36px; /* Standard Höhe - gleiche Höhe wie Eingabefelder */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover,
.button-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--color-blue-shadow-button);
}

.btn-contact:disabled,
.btn-contact[disabled] {
    background: var(--color-gray-border);
    color: var(--color-gray-subtitle);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.btn-contact:disabled:hover,
.btn-contact[disabled]:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-blue-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-white-nav);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: none;
    border-bottom: 1px solid var(--color-white-border);
    box-shadow: 0 2px 20px var(--color-shadow-light);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--color-gray-border);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--color-gray-nav);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--color-blue-medium);
}

.mobile-contact-btn {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    color: var(--color-white) !important;
    padding: 12px 20px !important;
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.mobile-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--color-blue-shadow-button);
}

/* Hero Section */
.navbar-spacer {
    height: 70px;
}

.hero {
    margin-top: 0;
    padding: 40px 20px 0px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 0;
}

/* Customer Experience Info Blocks */

.info-blocks {
    max-width: 1200px;
    margin: 45px auto 30px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr)); /* 3 Spalten, Mindestbreite 280px */
    gap: 40px;
}

.info-blocks-vertical {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.info-blocks-vertical .text-normal {
    font-size: 24px;
    line-height: 2;
}

.info-blocks-vertical .info-block .h2 {
    margin: 0;
    margin-bottom: 2px !important;
    font-size: 28px;
    padding-bottom: 0;
    position: relative;
}

.info-blocks-vertical .info-block .text-normal {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-subtitle);
    margin: 0 0 20px 0;
    max-width: 900px;
    padding-bottom: 30px;
    position: relative;
}

.info-blocks-vertical .info-block .text-normal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--color-gray-line);
}

.info-blocks-vertical .info-block .h2:last-child {
    margin-bottom: 0 !important;
}

.info-blocks-vertical .info-block .text-normal:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-blocks-vertical .info-block .text-normal:last-of-type::after {
    display: none;
}

.info-blocks-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 60px;
    width: 100%;
    max-width: 1000px;
    align-items: stretch;
}

.info-item {
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Konsistenter Abstand für alle Items */
.info-item:not(:last-child) {
    margin-bottom: 5px;
}

.info-item .h2 {
    margin: 0;
    margin-bottom: 8px !important;
    font-size: 28px;
    padding-bottom: 0;
    position: relative;
}

.info-item .text-normal {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-subtitle);
    margin: 0;
    padding-bottom: 0;
    position: relative;
}

/* Items mit Trennstrich: padding-bottom für Abstand über Trennstrich */
.info-item:nth-child(1) .text-normal,
.info-item:nth-child(2) .text-normal,
.info-item:nth-child(3) .text-normal,
.info-item:nth-child(4) .text-normal {
    padding-bottom: 20px;
}

/* Items ohne Trennstrich: padding-bottom für konsistenten Abstand */
.info-item:nth-child(5) .text-normal,
.info-item:nth-child(6) .text-normal {
    padding-bottom: 20px;
}

.info-item .text-normal {
    color: var(--color-gray-subtitle);
}

.info-item .text-normal .text-separator {
    color: #d0d5dc;
    margin: 0 12px;
    display: inline;
}

/* Trennlinien für Items - nur für Items, die nicht in der letzten Zeile sind */
.info-item:nth-child(1),
.info-item:nth-child(2),
.info-item:nth-child(3),
.info-item:nth-child(4) {
    position: relative;
    padding-bottom: 20px;
}

.info-item:nth-child(1)::after,
.info-item:nth-child(2)::after,
.info-item:nth-child(3)::after,
.info-item:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #d0d5dc;
}

.info-item:nth-child(3)::after,
.info-item:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #d0d5dc;
}


@media (max-width: 768px) {
    .info-blocks-two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Alle Items gleich behandeln in mobilen Ansicht */
    .info-item {
        text-align: center;
        margin: 0 !important;
        padding: 0 0 30px 0 !important;
        margin-bottom: 50px !important;
    }
    
    .info-item:last-child {
        margin-bottom: 0 !important;
    }
    
    .info-item .h2 {
        text-align: center;
        margin: 0 !important;
        margin-bottom: 8px !important;
    }
    
    .info-item .text-normal {
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .info-item .text-normal .text-separator {
        display: block;
        height: 20px;
        margin: 0;
        visibility: hidden;
        font-size: 0;
    }

    /* Linie auch unter dem 5. Element in der mobilen Ansicht */
    .info-item:nth-child(5) {
        position: relative;
    }

    .info-item:nth-child(5)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: #d0d5dc;
    }

    /* Überschriften abwechselnd blau/grau, beginnend mit blau */
    .info-blocks-two-columns .info-item:nth-child(1) .h2,
    .info-blocks-two-columns .info-item:nth-child(1) .h2.light-blue,
    .info-blocks-two-columns .info-item:nth-child(3) .h2,
    .info-blocks-two-columns .info-item:nth-child(5) .h2,
    .info-blocks-two-columns .info-item:nth-child(5) .h2.light-blue {
        color: var(--color-blue-light) !important;
    }
    
    .info-blocks-two-columns .info-item:nth-child(2) .h2,
    .info-blocks-two-columns .info-item:nth-child(4) .h2,
    .info-blocks-two-columns .info-item:nth-child(4) .h2.light-blue,
    .info-blocks-two-columns .info-item:nth-child(6) .h2 {
        color: var(--color-gray-heading) !important;
    }
    
    /* Abstand unter Animation in mobilen Ansicht reduzieren */
    section[style*="padding: 100px"] {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Abstand zwischen Animation und erstem Punkt deutlich kleiner */
    .info-blocks-vertical {
        margin-top: -20px !important;
    }
    
    .info-item:first-child {
        margin-top: 0 !important;
    }
    
    /* Abstand zwischen Banner und Datenanalyse-Sektion reduzieren */
    .info-blocks {
        margin-top: 20px !important;
    }
}

.info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 280px; /* Mindestbreite - verhindert Schrumpfen */
}

.info-block .h2 {
    margin-bottom: 0;
    font-size: 28px !important; /* Immer 28px, nie kleiner */
}

.info-block .text-normal {
    margin: 0;
}

.info-arrow {
    color: var(--color-gray-heading);
    font-size: 24px;
    line-height: 1;
    margin-top: 12px;
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
}

.info-summary {
    max-width: 1200px;
    margin: 20px auto 35px;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-summary .h2 {
    margin-bottom: 0;
}

.info-plans {
    max-width: 1200px;
    margin: 15px auto 30px;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-plans .h2 {
    margin-bottom: 0;
}

.info-plans .text-normal {
    margin: 0;
}

.info-plans-link {
    display: inline-block;
    margin-top: 60px;
    color: var(--color-blue-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.info-plans-link:hover {
    color: var(--color-blue-medium);
    text-decoration: underline;
}

.development-process {
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.development-process .h2 {
    margin-bottom: 0;
}

.development-process .text-normal {
    margin: 0;
}

.mission-point {
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-point:not(:last-child) {
    margin-bottom: calc((2.2 - 1.6) * 1em);
}

.mission-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 25px 20px;
    text-align: center;
}

.mission-box .text-normal {
    margin: 0;
    line-height: 1.6;
}

.team-image-placeholder {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 80px;
    box-sizing: border-box;
}

.team-image-placeholder-box {
    width: 504px;
    aspect-ratio: 504 / 260;
    background-color: #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    position: relative;
}

.team-image-placeholder-box::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
}

/* Intermediate breakpoint: 2 columns side by side */
@media (max-width: 1000px) {
    .mission-boxes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
}

/* Box wird kleiner wenn Viewport < 664px (504px + 160px Padding) - NUR wenn Padding noch 80px ist */
@media (max-width: 663px) {
    .team-image-placeholder-box {
        width: calc(100% - 160px);
        max-width: 504px;
        height: auto; /* Höhe wird durch aspect-ratio automatisch berechnet */
    }
}

@media (max-width: 768px) {
    .team-image-placeholder {
        padding: 0 20px;
    }
    
    /* Box bleibt 504px wenn genug Platz (Viewport >= 544px mit 20px Padding) */
    .team-image-placeholder-box {
        width: 504px;
        height: auto; /* Höhe wird durch aspect-ratio automatisch berechnet */
    }
    
    .development-process {
        padding: 0 20px;
    }
    
    .mission-boxes-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}

/* Box wird kleiner NUR wenn wirklich kein Platz mehr (504px Box + 40px Padding = 544px Viewport minimum) */
@media (max-width: 543px) {
    .team-image-placeholder-box {
        width: calc(100% - 40px);
        max-width: 504px;
        height: auto; /* Höhe wird durch aspect-ratio automatisch berechnet */
    }
}

/* Breakpoint: Wenn weniger als 960px verfügbar, umbrechen */
/* Berechnung: 3 × 280px + 2 × 40px gap + 40px padding = 960px */
@media (max-width: 960px) {
    .info-blocks {
        grid-template-columns: 1fr; /* Untereinander, wenn kein Platz für 3 */
        gap: 45px;
    }
    
    .info-block {
        min-width: 0;
        width: 100%;
    }
    
    /* Pfeile ausblenden, wenn untereinander - wie in Mobile */
    .info-blocks .info-block:nth-child(1) .info-arrow,
    .info-blocks .info-block:nth-child(2) .info-arrow {
        display: none;
    }
    
    .info-blocks .info-block:nth-child(3) .info-arrow {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .info-blocks {
        gap: 45px;
    }
    
    .info-blocks .info-block .h2 {
        font-size: 28px;
    }
    
    /* Pfeil-Regeln werden von @media (max-width: 960px) übernommen */
    
    .info-summary .h2,
    .info-plans .h2 {
        font-size: 28px;
    }
}

/* Wiederverwendbare Text-Klassen */
.h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--color-gray-heading);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.h1 .highlight {
    color: var(--color-blue-light);
}

.h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gray-heading);
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.h2 .highlight {
    color: var(--color-blue-light);
}

.h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-gray-heading);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.light-blue {
    color: var(--color-blue-light);
    font-weight: 700;
}

.text-normal-link {
    color: var(--color-gray-subtitle);
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s;
}

.text-normal-link:hover {
    color: var(--color-gray-text);
}

.text-normal {
    font-size: 16px;
    color: var(--color-gray-subtitle);
    line-height: 1.6;
}


.input-field {
    padding: 10px 18px;
    border: 1px solid var(--color-gray-border-light);
    border-radius: 20px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    outline: none;
    background: var(--color-white);
    color: var(--color-gray-text);
    width: 100%;
    height: 36px; /* Gleiche Höhe wie Button */
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, opacity 0.4s ease-out;
}

.input-field.fade-out {
    opacity: 0;
    pointer-events: auto;
    cursor: text;
}

.input-field::placeholder {
    color: var(--color-gray-placeholder);
}

.input-field:focus {
    border-color: var(--color-blue-light);
    box-shadow: 0 0 0 3px var(--color-blue-accent);
}

.input-field:disabled,
.input-field[disabled] {
    background: var(--color-gray-border);
    color: var(--color-gray-subtitle);
    cursor: not-allowed;
    opacity: 0.6;
}

.textarea-field {
    min-height: 140px;
    height: auto; /* Überschreibt die height: 36px von .input-field */
    border-radius: 16px;
    resize: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
}

.button-white {
    background: var(--color-white);
    color: var(--color-gray-nav);
    padding: 8px 22px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--color-shadow-button);
}

.button-white:disabled,
.button-white[disabled],
.button-blue:disabled,
.button-blue[disabled] {
    background: var(--color-gray-border);
    color: var(--color-gray-subtitle);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.button-blue:disabled:hover,
.button-blue[disabled]:hover,
.button-white:disabled:hover,
.button-white[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.text-footer {
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.6;
}

/* Legacy Support */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--color-gray-heading);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: var(--color-blue-light);
}

.hero-subtitle {
    color: var(--color-gray-subtitle);
    line-height: 1.6;
    max-width: 840px;
    margin: 10px auto 0;
}

.hero-demo {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-placeholder {
    width: 450px;
    height: 260px;
    background: var(--color-gray-placeholder);
    border-radius: 6px;
    box-shadow: 0 8px 30px var(--color-shadow-medium);
}

.carousel-wrapper .section-dots {
    display: flex;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    position: relative;
    z-index: 30;
    width: 100%;
    flex-shrink: 0;
    pointer-events: auto;
}

.dot {
    width: 9px;
    height: 9px;
    background: var(--color-gray-dot);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    pointer-events: auto;
    position: relative;
    z-index: 31;
}

.dot.active {
    background: #5BA4E8;
}

/* Feature Sections */
.feature-section {
    max-width: 1200px;
    width: 100%;
    margin: 70px auto 40px;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.feature-section:first-of-type {
    margin-top: -10px;
}

.feature-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    width: 100%;
    justify-content: center;
}

.feature-section.align-left .feature-wrapper {
    flex-direction: row;
}

.feature-section.align-right .feature-wrapper {
    flex-direction: row-reverse;
}

.feature-header {
    flex-shrink: 0;
    width: 280px;
    position: relative;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}

.feature-section.align-left .feature-header {
    text-align: right;
}

.feature-section.align-right .feature-header {
    text-align: left;
}

/* Legacy Support */
.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gray-heading);
    line-height: 1.25;
    letter-spacing: -0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.feature-title .highlight {
    color: var(--color-blue-light);
}

.feature-visual {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    min-width: 650px;
    max-width: 650px;
    overflow: visible;
    margin-top: -20px;
}

.feature-section.align-left .feature-visual {
    align-items: flex-start;
}

.feature-section.align-right .feature-visual {
    align-items: flex-end;
}

.carousel-wrapper {
    width: 650px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    flex-shrink: 1;
}

.feature-box {
    width: 650px;
    aspect-ratio: 650 / 360;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    outline: none;
    box-shadow: 0 8px 30px var(--color-shadow-medium);
    position: relative;
    overflow: hidden;
}


/* Feature Gallery Styles */
.feature-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: none;
    opacity: 0;
    pointer-events: none;
    border: none;
    outline: none;
    transition: opacity 0.8s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
    pointer-events: auto;
}

.no-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--color-gray-text);
    font-weight: 400;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 40px;
    height: 140px;
    font-size: 80px;
    font-weight: 400;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 0;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2), 
                 0 0 12px rgba(0, 0, 0, 0.15),
                 -2px -2px 8px rgba(0, 0, 0, 0.2);
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.gallery-btn:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--color-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25), 
                 0 0 15px rgba(0, 0, 0, 0.2),
                 -3px -3px 10px rgba(0, 0, 0, 0.25);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-btn-prev {
    left: 8px;
}

.gallery-btn-next {
    right: 8px;
}


/* Banner mit E-Mail Formular */
.banner-with-email {
    background: var(--color-blue-light);
    padding: 40px 80px;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}


.banner-with-email-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.banner-with-email h3,
.banner-title {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.2px;
    margin: 0;
    text-align: center;
    transition: opacity 0.4s ease-out;
}

.banner-title.fade-out {
    opacity: 0;
    pointer-events: none;
}

.banner-success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.banner-success-message.fade-in {
    opacity: 1;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-success-message h3 {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.2px;
    margin: 0;
}

.banner-success-message .success-checkmark {
    position: relative;
    z-index: 2;
    animation: checkmark-appear 0.5s ease-out;
}

.success-checkmark {
    position: relative;
    z-index: 2;
    animation: checkmark-appear 0.5s ease-out;
}

@keyframes checkmark-appear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Banner Content Wrapper - Fixed Height Container */
.banner-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: opacity 0.4s ease-out;
}

.banner-form-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.banner-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    min-width: 500px;
    transition: opacity 0.4s ease-out;
}

.banner-form.fade-out {
    opacity: 0;
    pointer-events: none;
}

.banner-input-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-form .input-field {
    width: 260px;
    height: 36px;
    box-sizing: border-box;
    border: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 8px 18px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
}

.banner-form .input-field:focus {
    border: none;
    box-shadow: 0 0 0 3px var(--color-white-hover);
}



/* Legacy Support - Simple Banner */
.simple-banner {
    background: var(--color-blue-light);
    padding: 45px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.bottom-banner-spacing {
    margin-bottom: 0;
}


.simple-banner h3 {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.2px;
    margin: 0;
}

.customer-banner h3 {
    margin: 0;
}

.customer-banner {
    margin-bottom: 30px;
}

/* Legacy Support - Slanted Edges */
/* Responsive Winkelberechnung: Winkel werden basierend auf Viewport-Breite berechnet */
/* Auf Mobile werden die Winkel weniger steil, um den visuellen Effekt auszugleichen */
.slanted-edges {
    /* Basis-Werte für Desktop - werden in Media Queries für Mobile angepasst */
    --angle-top-left: 3.5%;
    --angle-bottom-left: 92%;  /* weiter erhöht für noch flachere untere Kante */
    
    clip-path: polygon(
        0 var(--angle-top-left),      /* links oben - responsive */
        100% 0%,     /* rechts oben */
        100% 100%,   /* rechts unten */
        0 var(--angle-bottom-left)        /* links unten - responsive */
    );
    padding: 25px 40px 42px;  /* Asymmetrisches padding: oben weniger, unten mehr wegen clip-path */
}

/* Spezifische Regel für Bottom Banner mit Text oben - steilere untere Linie */
.slanted-edges.bottom-banner-spacing {
    --angle-bottom-left: 70%;  /* 10% steiler (reduziert von 92%) */
}

.slanted-edges-alt {
    /* Basis-Werte für Desktop - werden in Media Queries für Mobile angepasst */
    --angle-top-right: 21%;
    --angle-bottom-right: 92%;
    
    clip-path: polygon(
        0 0%,        /* links oben */
        100% var(--angle-top-right),    /* rechts oben - responsive */
        100% var(--angle-bottom-right),    /* rechts unten - responsive */
        0 100%       /* links unten */
    );
    padding: 35px 40px;
}

.slanted-edges-alt h3 {
    margin-top: 5px;
}

.slanted-edges-flipped {
    /* Basis-Werte für Desktop - werden in Media Queries für Mobile angepasst */
    --angle-top-left: 30%;
    --angle-top-right: 12%;
    --angle-bottom-left: 85%;
    
    clip-path: polygon(
        0 var(--angle-top-left),      /* links oben - responsive */
        100% var(--angle-top-right),   /* rechts oben - responsive */
        100% 100%,  /* rechts unten */
        0 var(--angle-bottom-left)       /* links unten - responsive */
    );
    padding: 30px 40px;
}

.slanted-edges-flipped h3 {
    margin: 0;
}

.slanted-probemonat {
    /* Basis-Werte für Desktop - werden in Media Queries für Mobile angepasst */
    --angle-top-left: 35%;  /* erhöht von 25% für flachere obere Kante (links weiter runter) */
    --offset-bottom: 10px;
    
    clip-path: polygon(
        0 var(--angle-top-left),       /* links oben - responsive */
        100% 0%,     /* rechts oben - höher, steigt nach rechts */
        100% calc(100% - var(--offset-bottom)),   /* rechts unten - responsive offset */
        0 calc(100% - var(--offset-bottom))       /* links unten - responsive offset */
    );
    padding-top: 55px;
}

.slanted-probemonat-start {
    /* Basis-Werte für Desktop - werden in Media Queries für Mobile angepasst */
    --angle-top-left: 10%;
    --angle-bottom-left: 40px;
    --offset-bottom: 10px;
    
    clip-path: polygon(
        0 var(--angle-top-left),       /* links oben - responsive */
        100% 0%,     /* rechts oben - höher, steigt nach rechts */
        100% calc(100% - var(--offset-bottom)),   /* rechts unten - responsive offset */
        0 calc(100% - var(--angle-bottom-left))       /* links unten - responsive */
    );
    padding-top: 55px;
}

.slanted-probemonat-start .banner-with-email-content {
    margin-top: 0;
}

.slanted-probemonat-start .banner-content-wrapper {
    transform: translateY(-15px);
}

/* Footer */
.footer {
    background: var(--color-gray-footer);
    padding: 25px 40px;
    color: var(--color-white);
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding: 0 50px;
    text-align: center;
}

.footer-separator {
    padding: 0 20px;
}

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

.footer-email {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email:hover {
    color: rgba(255, 255, 255, 0.7);
}

.text-footer {
    display: inline;
}

.footer-item {
    display: inline;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s, bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.chat-button svg {
    width: 51px;
    height: 51px;
    fill: white;
}

/* Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    height: 420px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--color-shadow-button);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.chatbot-window.open {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.chatbot-header {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    padding: 18px 20px;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--color-white);
    letter-spacing: -0.2px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: -4px;
}

.chatbot-close:hover {
    background: var(--color-white-hover);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-gray-bg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.chat-message.bot {
    background: var(--color-white);
    align-self: flex-start;
    box-shadow: 0 2px 8px var(--color-shadow-light);
}

.chat-message.user {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    color: var(--color-white);
    align-self: flex-end;
}

.chatbot-input-area {
    padding: 15px;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-border);
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--color-gray-border-light);
    border-radius: 20px;
    outline: none;
    transition: border-color 0.2s;
    font-size: 16px; /* Wichtig: 16px verhindert Auto-Zoom auf iOS Safari */
}

.chatbot-input::placeholder {
    color: var(--color-gray-placeholder);
    font-size: 16px;
}

.chatbot-input:focus {
    border-color: var(--color-blue-light);
}

.chatbot-input:disabled,
.chatbot-input[disabled] {
    background: var(--color-gray-border);
    color: var(--color-gray-subtitle);
    cursor: not-allowed;
    opacity: 0.6;
}

.chatbot-send {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-medium));
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send:disabled,
.chatbot-send[disabled] {
    background: var(--color-gray-border);
    color: var(--color-gray-subtitle);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.chatbot-send:disabled:hover,
.chatbot-send[disabled]:hover {
    transform: none;
}

.chatbot-send svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Responsive Design */

/* Feature Sections - Padding wird schrittweise angepasst */
/* Bleibt immer symmetrisch links/rechts */

/* Desktop: Max 1240px Viewport - Standard 20px Padding */
@media (max-width: 1240px) {
    .feature-section {
        padding: 0 20px;
    }
}

/* Bei 1160px: Padding auf 40px erhöhen für mehr Platz */
@media (max-width: 1160px) {
    .feature-section {
        padding: 0 40px;
    }
}

/* Bei 1100px: Padding auf 50px */
@media (max-width: 1100px) {
    .feature-section {
        padding: 0 50px;
    }
}

/* Breakpoint: Bei Viewport < 1080px */
/* Umspringen auf vertikales Layout (Text über Carousel) */
/* Ab hier: Padding wird wieder reduziert */
@media (max-width: 1079px) {
    .feature-section {
        padding: 0 40px;
    }

    .feature-wrapper {
        flex-direction: column !important;
        gap: 50px; /* Mehr Abstand zwischen Text und Carousel wie im Mobile */
        align-items: center; /* Carousels zentriert ausrichten */
    }
    
    /* Abstand zwischen Banner und Feature-Sektion reduzieren wenn Schrift und Carousel übereinander */
    .banner-with-email + .feature-section,
    .simple-banner + .feature-section {
        margin-top: 5px !important;
    }
    
    /* Abstand zwischen Feature-Sektion und Banner darunter reduzieren wenn Schrift und Carousel übereinander */
    .feature-section + .banner-with-email,
    .feature-section + .simple-banner {
        margin-top: 20px !important;
    }

    .feature-header {
        width: 100%;
        text-align: center !important;
    }

    .feature-visual {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        align-items: center !important; /* Überschreibt align-left/align-right */
    }
    
    .carousel-wrapper {
        width: 100%;
        max-width: 650px;
        margin: 0 auto; /* Zentriert den Wrapper */
    }
    
    .feature-box {
        width: 100%;
        max-width: 650px;
        margin: 0 auto; /* Zentriert die Box */
    }
}

@media (max-width: 1024px) {
    .hero-demo {
        flex-direction: column;
    }
}

/* Bei 800px: Padding auf 30px reduzieren */
@media (max-width: 800px) {
    .feature-section {
        padding: 0 30px;
    }
}

/* Responsive Navbar - Zuerst Gap reduzieren, dann Margin */
/* Schritt 1: Gap von 100px auf 75px */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 75px;
    }
}

/* Schritt 2: Gap auf 60px */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 60px;
    }
}

/* Schritt 3: Gap auf 50px (50%) */
@media (max-width: 1000px) {
    .nav-menu {
        gap: 50px;
    }
}

/* Schritt 4: Gap auf 40px (40%) - letzte Gap-Reduzierung */
@media (max-width: 950px) {
    .nav-menu {
        gap: 40px;
    }
}

/* Schritt 5: Jetzt erst Padding reduzieren von 120px auf 80px */
@media (max-width: 900px) {
    .navbar-content {
        padding: 0 80px;
    }
    
    .navbar {
        padding: 12px 30px 12px 15px;
    }
}

/* Schritt 6: Padding auf 60px */
@media (max-width: 850px) {
    .navbar-content {
        padding: 0 60px;
    }
}

/* Schritt 7: Padding auf 40px */
@media (max-width: 800px) {
    .navbar-content {
        padding: 0 40px;
    }
}

/* Schritt 8: Padding auf 20px */
@media (max-width: 750px) {
    .navbar-content {
        padding: 0 20px;
    }
    
    .navbar {
        padding: 12px 20px 12px 15px;
    }
}

/* Schritt 9: Burger-Menü */
@media (max-width: 700px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar-content {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    .btn-contact {
        display: none;
    }

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

    .mobile-menu {
        display: block;
        top: 56px;
    }

    .navbar-spacer {
        height: 60px;
    }

            .hero h1,
            .h1 {
                font-size: 32px;
            }

            .h2 {
                font-size: 24px;
            }
            
            .feature-title,
            .info-summary .h2,
            .info-plans .h2,
            .info-blocks-vertical .info-block .h2,
            .info-blocks .info-block .h2 {
                font-size: 28px !important;
            }

    .demo-placeholder,
    .feature-box {
        width: 100%;
        max-width: 100%;
    }

    /* Carousel Mobile Anpassungen */
    .feature-section {
        margin: 50px auto 30px;
        padding: 0 20px !important; /* Mobile: Fix 20px links/rechts */
    }

    .feature-section:first-of-type {
        margin-top: 20px;
    }
    
    /* Abstand zwischen Banner und Feature-Sektion reduzieren wenn Schrift und Carousel übereinander */
    .banner-with-email + .feature-section,
    .simple-banner + .feature-section {
        margin-top: 5px !important;
    }
    
    /* Abstand zwischen Feature-Sektion und Banner darunter reduzieren wenn Schrift und Carousel übereinander */
    .feature-section + .banner-with-email,
    .feature-section + .simple-banner {
        margin-top: 20px !important;
    }
}

/* Gleiche Regeln für Zwischenschritt (wenn Schrift und Carousel untereinander) */
@media (max-width: 1000px) {
    /* Abstand zwischen Banner und Feature-Sektion reduzieren wenn Schrift und Carousel übereinander */
    .banner-with-email + .feature-section,
    .simple-banner + .feature-section {
        margin-top: 5px !important;
    }
    
    /* Abstand zwischen Feature-Sektion und Banner darunter reduzieren wenn Schrift und Carousel übereinander */
    .feature-section + .banner-with-email,
    .feature-section + .simple-banner {
        margin-top: 20px !important;
    }

    .feature-wrapper {
        gap: 30px; /* Mobile: Kleinerer Abstand zwischen Text und Carousel */
    }

    .feature-visual {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .feature-box {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 650 / 360;
    }

    .gallery-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .gallery-btn {
        width: 50px;
        height: 100px;
        font-size: 60px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25), 
                     0 0 15px rgba(0, 0, 0, 0.2),
                     -2px -2px 10px rgba(0, 0, 0, 0.25);
    }

    .gallery-btn-prev {
        left: 0px;
    }

    .gallery-btn-next {
        right: 0px;
    }

    .section-dots {
        margin-top: 10px;
    }

    .footer {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    
    /* Sicherstellen, dass kein anderer Hintergrund unter dem Footer sichtbar ist */
    html {
        background: var(--color-gray-footer);
    }
    
    body {
        background: var(--color-gray-bg);
        min-height: 100vh;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0;
    }
    
    .text-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .footer-item {
        display: block;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-content {
        font-size: 14px;
    }

    .chatbot-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 80px;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        border-radius: 0;
        transition: max-height 0.3s ease-out;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
        padding: 0;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
        contain: layout style paint;
    }
    
    .chatbot-window.input-focused {
        max-height: calc(100vh - 280px);
        height: calc(100vh - 280px);
    }
    
    .chatbot-header {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        contain: layout style;
    }
    
    .chatbot-messages {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        contain: layout style;
    }
    
    .chatbot-input-area {
        flex-shrink: 0;
        min-width: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        padding: 15px;
        display: flex;
        gap: 10px;
        align-items: center;
        contain: layout style;
    }
    
    .chatbot-input {
        min-width: 0;
        flex: 1 1 0;
        max-width: none;
        box-sizing: border-box;
        width: 0;
        font-size: 16px !important; /* Wichtig: 16px verhindert Auto-Zoom auf iOS Safari */
    }
    
    .chatbot-send {
        flex-shrink: 0;
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
        width: 86px;  /* 90% von 96px (gerundet) */
        height: 86px;  /* 90% von 96px (gerundet) */
    }

    .chat-button svg {
        width: 46px;  /* 90% von 51px (gerundet) */
        height: 46px; /* 90% von 51px (gerundet) */
    }

    /* Vereinfachte Banner-Anpassung für Mobile - flachere Winkel für mehr Textplatz */
    .slanted-edges {
        --angle-top-left: 1%;
        --angle-bottom-left: 95%;
        padding: 25px 20px 42px;
    }

    .slanted-edges.bottom-banner-spacing {
        --angle-bottom-left: 85%;
    }

    .slanted-edges-alt {
        --angle-top-right: 8%;
        --angle-bottom-right: 92%;
    }

    .slanted-edges-flipped {
        --angle-top-left: 15%;
        --angle-top-right: 6%;
        --angle-bottom-left: 85%;
    }

    .slanted-probemonat {
        --angle-top-left: 15%;
        padding: 40px 20px;
    }

    .slanted-probemonat-start {
        --angle-top-left: 5%;
        --angle-bottom-left: 20px;
    }
}


/* Prices Form Section */
.contact-section {
    margin-top: 30px;
    padding: 0 20px;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-subtitle);
    width: 480px; /* Gleiche Breite wie Felder (480px) */
    max-width: 100%; /* Auf kleineren Screens: nicht breiter als Container */
    text-align: left;
    align-self: center; /* Zentriert wie die Felder */
}

/* Alle Eingabefelder haben die gleiche Breite wie das Nachrichtenfeld */
/* Feste Breite: 480px (entspricht 75% von 640px verfügbarer Breite) */
/* Verhindert, dass Felder breiter werden, wenn Container-Padding konstant bleibt */
.form-group-half .input-field,
.form-group-full .input-field {
    width: 480px;
    max-width: 100%; /* Auf kleineren Screens: nicht breiter als Container */
    align-self: center;
}

.contact-form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    min-height: 60px;
}

.contact-form-actions .contact-success-message {
    width: 100%;
    justify-content: center;
}

/* Bei 760px: Padding wird angepasst, damit Felder 480px breit bleiben */
/* Berechnung: Padding = (Viewport - 480px) / 2, mindestens 10px, maximal 40px */
@media (max-width: 760px) {
    .contact-container {
        padding-left: clamp(10px, calc((100vw - 480px) / 2), 40px);
        padding-right: clamp(10px, calc((100vw - 480px) / 2), 40px);
    }
}

@media (max-width: 520px) {
    /* Ab 520px: Felder gehen auf 100%, Padding wird reduziert */
    .contact-container {
        padding: 0 10px;
    }

    .contact-form-actions {
        justify-content: center;
    }

    .contact-form-actions .button-blue {
        width: 100%;
        text-align: center;
    }

    /* Alle Felder und Labels auf Mobile volle Breite */
    .form-group-half .input-field,
    .form-group-full .input-field,
    .form-label {
        width: 100%;
        max-width: none;
    }
}

.prices-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Wrapper für Formular und Success-Message mit fester Höhe */
.prices-form-wrapper {
    position: relative;
    min-height: 100px; /* Reserviert Platz für Formular (36px Input + Button) und Success-Message */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Abstand zu den Preisboxen */
}

.prices-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-out;
    min-width: 400px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prices-form.fade-out {
    opacity: 0;
    pointer-events: none;
}

.prices-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prices-form .input-field {
    width: 260px;
    height: 36px;
    box-sizing: border-box;
}

.prices-form .input-field:focus {
    box-shadow: 0 0 0 3px var(--color-blue-accent);
}


/* Prices Form Button - verwendet Standard Padding aus zentraler Klasse */
.prices-form .button-blue {
    margin-top: 0;
}

/* Preismodell-Boxen */
.pricing-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 40px;
    justify-items: center;
    justify-content: center;
}

.pricing-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pricing-gradient-bar {
    width: 100%;
    height: 8px;
    margin-bottom: 20px;
}

.pricing-box-starter .pricing-gradient-bar {
    background: linear-gradient(90deg, #5BA4E8, #6CB4EE);
}

.pricing-box-komfort .pricing-gradient-bar {
    background: linear-gradient(90deg, #4A90E2, #5BA4E8);
}

.pricing-box-individuell .pricing-gradient-bar {
    background: linear-gradient(90deg, #6a93b0, #7aa3c0);
}


.pricing-title-badge {
    display: inline-block;
    color: var(--color-blue-medium);
    padding: 0;
    border-radius: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    box-shadow: none;
    margin-bottom: 25px;
    margin-top: 0;
}

.pricing-box-starter .pricing-title-badge {
    color: #5BA4E8;
}

.pricing-box-komfort .pricing-title-badge {
    color: #4A90E2;
}

.pricing-box-individuell .pricing-title-badge {
    color: #6a93b0;
}

.pricing-box-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-heading);
    margin-bottom: 25px;
    margin-top: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.pricing-features {
    list-style: none;
    padding: 0 25px 30px 25px;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--color-gray-subtitle);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-blue-medium);
    font-weight: bold;
}

.pricing-features.blurred {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .prices-form-section {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .prices-form-wrapper {
        min-height: 120px; /* Etwas mehr Platz auf Mobile für Success-Message */
    }
    
    .prices-form {
        justify-content: center;
        min-width: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .prices-success-message {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-boxes-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 0;
        margin: 60px auto 0;
        width: 100%;
        max-width: 100%;
        justify-items: stretch;
    }
    
    .pricing-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .pricing-title-badge {
        font-size: 18px;
    }
    
    .pricing-features.blurred {
        font-size: 8px;
    }
    
    .pricing-features.blurred li {
        font-size: 8px;
        padding: 4px 0;
        line-height: 1.4;
    }
}

.prices-success-message {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
    opacity: 0;
    transition: opacity 0.4s ease-in;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prices-success-message.fade-in {
    opacity: 1;
}

.prices-success-text {
    color: var(--color-blue-light);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.2px;
    margin: 0;
}

.prices-success-message .success-checkmark {
    color: var(--color-blue-light);
}

/* Contact Success Message - same style as prices */
.contact-success-message {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.contact-success-message.fade-in {
    opacity: 1;
}

.contact-success-text {
    color: var(--color-blue-light);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.2px;
    margin: 0;
}

.contact-success-message .success-checkmark {
    color: var(--color-blue-light);
}

.contact-title {
    transition: opacity 0.4s ease-out;
}

.contact-title.fade-out {
    opacity: 0;
    pointer-events: none;
}

.hero-subtitle {
    transition: opacity 0.4s ease-out;
}

.hero-subtitle.fade-out {
    opacity: 0;
    pointer-events: none;
}

.contact-form {
    transition: opacity 0.4s ease-out;
}

.contact-form.fade-out {
    opacity: 0;
    pointer-events: none;
}

.privacy-page .hero {
    padding-bottom: 0;
}

.privacy-page .privacy-content {
    margin-top: 0;
    margin-bottom: 40px;
    /* Scroll-Offset für fixierte Navbar bei Anker-Links */
    scroll-padding-top: 100px;
}

.privacy-page .privacy-content .text-normal {
    text-align: justify;
}

.privacy-page .privacy-content .text-normal p.text-normal {
    margin-bottom: 1.2em;
    text-align: justify;
}

.privacy-page .privacy-content .text-normal p.text-normal:last-child {
    margin-bottom: 0;
}

.privacy-page .privacy-content h2,
.privacy-page .privacy-content h3,
.privacy-page .privacy-content h4 {
    text-transform: uppercase;
    /* Scroll-Offset für fixierte Navbar */
    scroll-margin-top: 100px;
}

.privacy-page .privacy-content h2 {
    color: var(--color-blue-light);
    margin-top: 60px;
    margin-bottom: 20px;
}

.privacy-page .privacy-content .text-normal > h2:first-of-type {
    margin-top: 30px;
}

.privacy-page .privacy-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-page .privacy-content h4 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.privacy-page .privacy-list {
    padding-left: 20px;
    margin-top: 15px;
    text-align: justify;
    margin-bottom: 15px;
    list-style-type: disc;
    list-style-position: inside;
}

.privacy-page .privacy-list li {
    margin-bottom: 12px;
}

/* Logo zentrieren */
.privacy-page .privacy-content img[src*="dsg-seal"],
.privacy-page .privacy-content a[href*="datenschutz-generator"] {
    display: block;
    text-align: center;
    margin: 20px auto;
}

.privacy-page .privacy-content a[href*="datenschutz-generator"] img {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .prices-form {
        flex-direction: column;
        align-items: center;
    }
    
    .prices-input-wrapper {
        align-items: center;
    }
}

/* Animation Page Styles - Start Page */
.animation-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 60px auto;
    transform: scale(0.8);
    transform-origin: center top;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.animation-container.fade-in {
    opacity: 1;
}

.container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.calendar-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.day-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
}

.day-header {
    font-weight: 600;
    font-size: 28px;
    color: #718096;
    text-align: center;
    padding: 10px 0;
    background: #f7fafc;
    border-radius: 8px;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
}

/* Großer "Plane für mich" Button - Heller/Pastell */
.schedule-start-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 36px;
    background: linear-gradient(135deg, #7eb3f0, #5ba4ff);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 600;
    cursor: default;
    transition: transform 0.2s, box-shadow 0.3s, opacity 0.4s;
    box-shadow: 0 8px 20px rgba(91, 164, 255, 0.3);
    z-index: 100;
    opacity: 1;
    display: block;
    white-space: nowrap;
}

.schedule-start-button:hover {
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 164, 255, 0.4);
}

/* Success Animation - OPTIMAL Text */
.success-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    font-size: 96px;
    color: #b0fba5;
    text-transform: uppercase;
    letter-spacing: 4px;
    -webkit-text-stroke: 2px #b0fba5;
    text-stroke: 2px #b0fba5;
    transition: opacity 0.6s ease-in;
    filter: drop-shadow(0 0 3px rgba(55, 100, 45, 0.8)) drop-shadow(0 0 1px rgba(55, 100, 45, 0.6));
}

.success-text.visible {
    opacity: 1 !important;
}

/* Konfetti Container */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #90EE90;
    opacity: 0;
}

.confetti-piece.falling {
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        opacity: 0.8;
        transform: translateY(100vh) rotate(720deg);
    }
}

.schedule-start-button.clicking {
    animation: clickButton 0.15s ease-out forwards;
}

@keyframes clickButton {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.96);
        box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
    }
}

.schedule-start-button.clicked-done {
    animation: buttonClickedDone 0.2s ease-out forwards;
}

@keyframes buttonClickedDone {
    0% {
        transform: translate(-50%, -50%) scale(0.96);
        box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    }
}

.schedule-start-button.fade-out-button {
    animation: fadeOutButtonSmooth 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes fadeOutButtonSmooth {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.schedule-start-button.fade-in-button {
    animation: fadeInButton 0.5s ease-out forwards;
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Mauszeiger Animation - Windows 11 Style */
.mouse-cursor {
    position: absolute;
    width: 56px;
    height: 56px;
    pointer-events: none;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    /* Relative Positionierung zum Button */
    left: 50%;
    top: 50%;
    transform: translate(-28px, -28px);
}

.mouse-cursor svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mouse-cursor.show {
    opacity: 1;
}

.mouse-cursor.move-to-button {
    animation: moveCursorToButton 1.2s ease-in-out forwards;
}

.mouse-cursor.hide {
    opacity: 0 !important;
}

@keyframes moveCursorToButton {
    0% {
        opacity: 0;
        transform: translate(-150px, -150px);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        /* Cursor endet näher am Button */
        transform: translate(-28px, -10px);
    }
}

.time-slot {
    height: 60px;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3);
}

/* Unterschiedliche Höhen für Zeitslots */
.slot-height-1 { height: 60px; }
.slot-height-2 { height: 130px; }
.slot-height-3 { height: 200px; }

/* Farben für die Zeitslots - Blaue Pastelltöne */
.slot-color-1 { background: #A7C7E7; }
.slot-color-2 { background: #87CEEB; }
.slot-color-3 { background: #B0E0E6; }
.slot-color-4 { background: #ADD8E6; }
.slot-color-5 { background: #89CFF0; }
.slot-color-6 { background: #6CB4EE; }
.slot-color-7 { background: #7CB9E8; }
.slot-color-8 { background: #81D4FA; }
.slot-color-9 { background: #7CB9E8; }
.slot-color-10 { background: #4FC3F7; }
.slot-color-11 { background: #81D4FA; }
.slot-color-12 { background: #B3E5FC; }
.slot-color-13 { background: #6FA8DC; }
.slot-color-14 { background: #9FC5E8; }
.slot-color-15 { background: #C9DAF8; }
.slot-color-16 { background: #8AB4F8; }
.slot-color-17 { background: #A8DADC; }
.slot-color-18 { background: #5DADE2; }

/* Floating Slots - außerhalb des Kalenders */
.floating-slot {
    position: absolute;
    width: 110px;
    height: 60px;
    border-radius: 12px;
    opacity: 1;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3);
}

/* Breite anpassen für größere Bildschirme */
@media (min-width: 600px) {
    .floating-slot {
        width: calc((720px - 75px) / 6);
    }
}

/* Unterschiedliche Höhen für floating slots */
.floating-slot.slot-height-1 { height: 60px; }
.floating-slot.slot-height-2 { height: 130px; }
.floating-slot.slot-height-3 { height: 200px; }

/* Gleichmäßig um den Kalender verteilt - Oben - mittig zentriert */
.floating-1 { top: -60px; left: 10%; }
.floating-2 { top: -90px; left: 28%; }
.floating-3 { top: -60px; left: 46%; }
.floating-4 { top: -60px; left: 64%; }
.floating-6 { top: -90px; left: 82%; }

/* Links */
.floating-7 { top: 5%; left: -80px; }
.floating-9 { bottom: 5%; left: -80px; }

/* Rechts */
.floating-5 { top: 5%; right: -80px; }
.floating-10 { top: 30%; right: -80px; }
.floating-11 { top: 55%; right: -80px; }
.floating-12 { top: 80%; right: -80px; }

/* Unten - mittig zentriert */
.floating-8 { bottom: -60px; left: 10%; }
.floating-13 { bottom: -60px; left: 27.5%; }
.floating-14 { bottom: -90px; left: 45%; }
.floating-15 { bottom: -120px; left: 62.5%; }
.floating-16 { bottom: -60px; left: 80%; }

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

.floating-slot {
    animation: float var(--float-duration, 3s) ease-in-out infinite;
}

/* Delay für verschiedene floating slots */
.floating-slot:nth-child(odd) {
    animation-delay: 0.5s;
}

/* Fly-in Animation */
@keyframes flyIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.time-slot.animate-in {
    animation: flyIn var(--fly-in-duration, 0.3s) linear forwards;
}

/* Spezielle Animation für Block 4 - wird dynamisch per JavaScript gesetzt */
.time-slot[data-slot="1"].animate-in-error {
    z-index: 20;
    position: absolute;
}

.title {
    display: none;
}

.subtitle {
    display: none;
}

/* Fade out für floating slots */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

.floating-slot.fade-out {
    animation: fadeOut var(--fade-out-duration, 0.2s) linear forwards;
}

/* Spezielle Fade-out für Block 4's floating slot */
.floating-slot:nth-child(2).fade-out {
    animation: fadeOut var(--fade-out-duration, 0.2s) linear forwards;
}

/* Fade in für floating slots */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-slot.fade-in {
    animation: fadeIn var(--fade-in-duration, 0.3s) linear forwards;
}

/* Fly-out Animation - umgekehrt */
@keyframes flyOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.time-slot.animate-out {
    animation: flyOut var(--fly-out-duration, 0.3s) linear forwards;
}

.reset-button {
    display: none;
}

/* Responsive scaling für alle Bildschirmgrößen */
@media (max-width: 1200px) {
    .animation-container {
        transform: scale(0.7);
        transform-origin: center top;
    }
}

@media (max-width: 900px) {
    .animation-container {
        transform: scale(0.7);
        transform-origin: center top;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .day-header {
        font-size: 26px;
    }
    
    .calendar-wrapper {
        padding: 20px;
    }
    
    /* Floating slots näher ran */
    .floating-7 { left: -70px; top: 2%; }
    .floating-9 { left: -70px; bottom: 2%; }
    .floating-5 { right: -70px; }
    .floating-10 { right: -70px; }
    .floating-11 { right: -70px; }
    .floating-12 { right: -70px; }
    
    /* Cursor größer */
    .mouse-cursor {
        width: 64px;
        height: 64px;
        transform: translate(-32px, -32px);
    }
    
    @keyframes moveCursorToButton {
        0% {
            opacity: 0;
            transform: translate(-150px, -150px);
        }
        20% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translate(-32px, -14px);
        }
    }
}

@media (max-width: 700px) {
    .animation-container {
        transform: scale(0.7);
        transform-origin: center top;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .day-header {
        font-size: 24px;
    }
    
    .calendar-wrapper {
        padding: 15px;
    }
    
    .schedule-start-button {
        padding: 18px 40px;
        min-width: 240px;
    }
    
    /* Floating slots noch näher ran */
    .floating-7 { left: -65px; top: 0%; }
    .floating-9 { left: -65px; bottom: 0%; }
    .floating-5 { right: -65px; }
    .floating-10 { right: -65px; }
    .floating-11 { right: -65px; }
    .floating-12 { right: -65px; }
    
    /* Cursor noch größer */
    .mouse-cursor {
        width: 72px;
        height: 72px;
        transform: translate(-36px, -36px);
    }
    
    @keyframes moveCursorToButton {
        0% {
            opacity: 0;
            transform: translate(-150px, -150px);
        }
        20% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translate(-36px, -18px);
        }
    }
}

@media (max-width: 500px) {
    /* Reduziertes Padding für Animation-Section auf kleinsten mobilen Geräten */
    section[style*="padding: 100px"] {
        padding: 60px 10px 5px 10px !important;
    }
    
    .animation-container {
        transform: scale(0.7);
        transform-origin: center top;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .day-header {
        font-size: 22px;
    }
    
    .calendar-wrapper {
        padding: 10px;
    }
    
    .schedule-start-button {
        padding: 16px 45px;
        min-width: 260px;
    }
    
    /* Floating slots maximal nah ran */
    .floating-7 { left: -60px; top: -2%; }
    .floating-9 { left: -60px; bottom: -2%; }
    .floating-5 { right: -60px; }
    .floating-10 { right: -60px; }
    .floating-11 { right: -60px; }
    .floating-12 { right: -60px; }
    
    /* Cursor maximal groß */
    .mouse-cursor {
        width: 80px;
        height: 80px;
        transform: translate(-40px, -40px);
    }
    
    @keyframes moveCursorToButton {
        0% {
            opacity: 0;
            transform: translate(-150px, -150px);
        }
        20% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translate(-40px, -22px);
        }
    }

    .simple-banner {
        padding: 25px 20px;
    }

    .slanted-edges {
        padding: 25px 20px 42px;
    }

    .banner-with-email {
        padding: 40px 40px;
    }

    .banner-with-email-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .banner-title {
        text-align: center;
    }

    .banner-form-container {
        width: 100%;
        max-width: 400px;
        gap: 15px;
    }

    .banner-form {
        flex-direction: column;
        align-items: center;
        min-width: auto;
        width: 100%;
    }
}

