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

:root {
    --primary-color: #154770;
    --secondary-color: #10334f;
    --dark-bg: #000000;
    --light-bg: #fbfbfd;
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --accent-gradient: linear-gradient(135deg, #10334f 0%, #017f8c 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

html {
    /* Riegel gegen horizontales Scrollen: Reveal-Animationen verschieben Elemente
       kurzzeitig seitlich aus dem Viewport; ohne das entsteht sonst eine
       waagerechte Scrollleiste (v. a. auf Mobil). */
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

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

/* Inline-Icons (ersetzen Emojis) */
.ico {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    flex: 0 0 auto;
}
.ico-flag {
    width: 1.4em;
    height: auto;
    vertical-align: -0.2em;
    border-radius: 2px;
}

/* Header & Navigation */
header {
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.nav-login {
    border: 1px solid rgba(21, 71, 112, 0.35);
    border-radius: 999px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 16px;
}

.nav-links a.nav-login:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    margin-top: 64px;
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #10334f 0%, #017f8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 20px; /* Verhindert Abschneiden an den Rändern */
    word-wrap: break-word; /* Text umbricht bei Bedarf */
}

.hero p {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.price-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Page Hero */
.page-hero {
    margin-top: 64px;
    padding: 80px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

/* Features */
.features {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-bg);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.usecase-section {
    position: relative;
    overflow: hidden;
}

/* Reveal-Karten werden vor dem Einblenden seitlich verschoben – hier clippen,
   damit kein horizontales Scrollen entsteht (wie bei .usecase-section). */
.split-section {
    overflow-x: hidden;
}

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

.usecase-pattern {
    position: absolute;
    inset: -25%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(21,71,112,0.22) 45deg, transparent 130deg, transparent 230deg, rgba(1,127,140,0.18) 275deg, transparent 340deg);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.9s ease;
    animation: usecaseSweep 14s linear infinite;
    animation-play-state: paused;
}

.usecase-section.in-view .usecase-pattern {
    opacity: 1;
    animation-play-state: running;
}

@keyframes usecaseSweep {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .usecase-pattern {
        animation: none;
        opacity: 0.6;
    }
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Showcase */
.product-showcase {
    padding: 100px 20px;
    background: var(--light-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.showcase-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.showcase-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.showcase-item p {
    font-size: 14px;
    color: var(--text-light);
}

.showcase-arrow {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #10334f 0%, #017f8c 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-white {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
    background: white;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.text-content ul {
    margin: 24px 0 24px 32px;
}

.text-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

.text-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 24px;
}

.text-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Features Detail */
.features-detail {
    padding: 100px 20px;
    background: var(--light-bg);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.detail-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.detail-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* "Warum wir Ihr idealer Partner sind": 4 Kacheln in einer Zeile + wiederholbarer Flip-Reveal */
.whyus-cards {
    grid-template-columns: repeat(4, 1fr);
}

.whyus-cards .detail-card {
    opacity: 0;
    transform: perspective(900px) rotateY(-14deg) scale(0.92);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.whyus-cards .detail-card.in-view {
    opacity: 1;
    transform: perspective(900px) rotateY(0deg) scale(1);
}

.whyus-cards .detail-card:nth-child(1) { transition-delay: 0s; }
.whyus-cards .detail-card:nth-child(2) { transition-delay: 0.08s; }
.whyus-cards .detail-card:nth-child(3) { transition-delay: 0.16s; }
.whyus-cards .detail-card:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 900px) {
    .whyus-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .whyus-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .whyus-cards .detail-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Tech Specs */
.tech-section {
    padding: 100px 20px;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--light-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.spec-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.spec-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Process Timeline */
.process-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    align-items: center;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    padding: 100px 20px;
    background: white;
}

.pricing-card-main {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #10334f 0%, #017f8c 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 48px;
    text-align: center;
    color: white;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.currency {
    font-size: 36px;
    font-weight: 600;
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 24px;
    align-self: flex-end;
    margin-bottom: 12px;
    opacity: 0.9;
}

.pricing-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.pricing-features {
    background: white;
    padding: 48px;
}

.pricing-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: #34c759;
    font-weight: 700;
    font-size: 20px;
}

.guarantee-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

.guarantee-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guarantee-box p {
    font-size: 14px;
    color: var(--text-light);
}

.buy-button {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.buy-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ROI Calculator */
.roi-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.calculator-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.calculator-input {
    margin-bottom: 32px;
}

.calculator-input label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.calculator-input input,
.calculator-input select {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    transition: all 0.3s;
    font-family: inherit;
}

.calculator-input input:focus,
.calculator-input select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculator-result {
    margin-top: 40px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.result-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.result-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 20px;
    background: white;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.check-mark {
    color: #34c759;
    font-size: 24px;
    font-weight: 700;
    margin-right: 8px;
}

.cross-mark {
    color: #ff3b30;
    font-size: 24px;
    font-weight: 700;
    margin-right: 8px;
}

/* Kostenvergleich – Einleitung & Alltags-Analogie */
.compare-intro {
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: center;
}

.compare-analogy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
    text-align: left;
}

.analogy-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 28px;
    border: 2px solid transparent;
}

.analogy-card.rent {
    border-color: rgba(255, 59, 48, 0.25);
    background: rgba(255, 59, 48, 0.04);
}

.analogy-card.own {
    border-color: rgba(52, 199, 89, 0.3);
    background: rgba(52, 199, 89, 0.05);
}

.analogy-emoji {
    margin-bottom: 10px;
    line-height: 1;
}

.analogy-card.rent .analogy-emoji {
    color: #ff3b30;
}

.analogy-card.own .analogy-emoji {
    color: #34c759;
}

.analogy-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.analogy-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Kostenvergleich – Fazit-Box */
.compare-result {
    max-width: 1000px;
    margin: 32px auto 0;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.12), rgba(52, 199, 89, 0.04));
    border: 2px solid rgba(52, 199, 89, 0.35);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.compare-result .result-big {
    font-size: 30px;
    font-weight: 700;
    color: #1a8f3c;
    margin-bottom: 10px;
}

.compare-result .result-big strong {
    color: #34c759;
}

.compare-result p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 680px;
    margin: 0 auto;
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.faq-question {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(21, 71, 112, 0.05);
}

.faq-answer {
    padding: 0 32px 24px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 28px 0 8px;
    padding: 16px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
}

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

/* WhatsApp Produkt-Auswahl */
.wa-box {
    margin: 28px 0 8px;
}

.wa-box .wa-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.wa-box .wa-title svg {
    color: #25D366;
    flex-shrink: 0;
}

.wa-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wa-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid #d2d2d7;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.wa-option svg {
    color: #25D366;
    flex-shrink: 0;
}

.wa-option:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.06);
    transform: translateY(-2px);
}

@media (max-width: 520px) {
    .wa-options { grid-template-columns: 1fr; }
}

/* Schwebender WhatsApp-Button */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 0;
    height: 60px;
    padding: 0;
    width: 60px;
    overflow: hidden;
    background: #25D366;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: width 0.35s ease, box-shadow 0.3s, transform 0.3s, opacity 0.25s ease;
    white-space: nowrap;
}

.wa-float .wa-float-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float .wa-float-label {
    font-size: 16px;
    font-weight: 600;
    padding-right: 22px;
    opacity: 0;
    transition: opacity 0.25s ease 0.1s;
}

.wa-float:hover {
    width: 230px;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.wa-float:hover .wa-float-label {
    opacity: 1;
}

/* Sanftes Pulsieren, um Aufmerksamkeit zu erzeugen */
.wa-float::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: wa-pulse 2.4s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .wa-float { right: 16px; bottom: 16px; }
    /* auf Mobil immer kompakt als runder Button */
    .wa-float:hover { width: 60px; }
    .wa-float:hover .wa-float-label { opacity: 0; }
}

/* Back-to-Top Button (über dem WhatsApp-Button gestapelt) */
.back-to-top {
    width: 50px;
    height: 50px;
    right: 27px;
    bottom: 94px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 46px;
        height: 46px;
        right: 21px;
        bottom: 84px;
    }
}

/* Hörproben / Sprachtest (ElevenLabs) */
.voice-section { padding: 80px 20px; background: #fff; }
.voice-badge {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: max-content; margin: 0 auto 14px;
    background: rgba(21, 71, 112, 0.08); color: var(--primary-color);
    font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: 30px;
}
.voice-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.voice-card {
    background: var(--light-bg); border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px; padding: 28px; box-shadow: var(--shadow);
    display: flex; flex-direction: column;
}
.voice-card .vc-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--accent-gradient); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px;
}
.voice-card h3 { font-size: 18px; margin: 0 0 8px; line-height: 1.35; }
.voice-card p { color: var(--text-light); font-size: 14px; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.voice-card audio { width: 100%; margin-top: auto; }

/* Eigene Projekte: Browser-Games */
.game-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 36px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.game-card .game-icon {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.game-card .game-thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 16px;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.game-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.game-card .game-tag {
    align-self: flex-start;
    background: rgba(21, 71, 112, 0.1);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.game-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.game-card .game-play {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Verhindert horizontalen Überlauf auf Handy/Tablet (Grid-Spalten dürfen schrumpfen) */
.contact-grid > * { min-width: 0; }
.cf-turnstile { max-width: 100%; overflow: hidden; }

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 16px;
}

.contact-icon {
    font-size: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item small {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Cloudflare Turnstile Widget */
.cf-turnstile {
    margin: 0 0 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.selected-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -8px 0 28px;
    padding: 16px 18px;
    border: 1px solid rgba(21, 71, 112, 0.22);
    border-radius: 14px;
    background: rgba(21, 71, 112, 0.08);
    color: var(--text-dark);
}

.selected-product[hidden] {
    display: none;
}

.selected-product-label {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.selected-product strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.selected-product button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--text-light);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    box-shadow: var(--shadow);
}

.selected-product button:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled,
.submit-button:disabled:hover {
    background: #98a2b3;
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.form-message {
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px; /* Kleiner auf Mobile */
        letter-spacing: -1px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid,
    .feature-detail-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-arrow {
        display: none;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px 24px;
    }

    /* Spaltenüberschrift ist beim Stapeln nutzlos – ausblenden */
    .comparison-row.header {
        display: none;
    }

    /* Zellen mobil als Block fließen lassen – Erklärung kommt sauber unter den Wert */
    .comparison-row .comparison-cell {
        display: block;
    }

    /* Erste Zelle wird zur Zeilen-Überschrift */
    .comparison-row .comparison-cell:first-child {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    /* Jede Zahl bekommt ihre Spaltenbeschriftung davor */
    .comparison-cell[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: 700;
        color: var(--text-light);
        margin-right: 6px;
    }

    .compare-analogy {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-result .result-big {
        font-size: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    nav {
        padding: 14px 20px;
    }

    .contact-section {
        padding: 64px 16px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-item {
        padding: 18px;
        gap: 16px;
    }

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

    .pricing-header,
    .pricing-features {
        padding: 40px 24px;
    }

    .price-display .amount {
        font-size: 56px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .calculator-box {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 72px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px;
    }

    .cta-button-white,
    .cta-button-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px; /* Noch kleiner auf sehr kleinen Bildschirmen */
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .price-tag {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 48px;
    }
}

    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline-process::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(0,0,0,0.05));
}
.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}
.timeline-step .step-number {
    width: 80px; height: 80px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16, 51, 79, 0.4);
    z-index: 1;
}
.timeline-step .step-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-grow: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-step .step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.timeline-step .step-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
}
.timeline-step .step-content p {
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline-process::before {
        left: 30px;
    }
    .timeline-step {
        gap: 18px;
    }
    .timeline-step .step-number {
        width: 60px; height: 60px;
        font-size: 20px;
    }
    .timeline-step .step-content {
        padding: 22px 20px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}
/* Utility Classes */
.text-center {
    text-align: center;
}

/* --- REDESIGN 2026 --- */
/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hero Enhancements */
.hero.hero-dynamic {
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #fbfbfd, #e4edf4, #e1f2f3, #fbfbfd);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

.hero.hero-dynamic::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(16, 51, 79, 0.1) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 0;
}
.hero.hero-dynamic .container {
    position: relative;
    z-index: 1;
}

/* Dark Mode Premium */
.bg-dark-premium {
    background: #0a0a0c;
    color: #ffffff;
    position: relative;
}
.bg-dark-premium .section-title {
    color: #ffffff;
}
.bg-dark-premium .split-card {
    background: #141416;
    border: 1px solid rgba(255,255,255,0.05);
    color: #e0e0e0;
}
.bg-dark-premium .split-card h3 {
    color: #ffffff;
}
.bg-dark-premium .split-card li {
    color: #a0a0a5;
}
.bg-dark-premium .split-card.solution {
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(21, 71, 112, 0.1);
}
.bg-dark-premium .split-card.problem {
    border-top: 4px solid #ff3b30;
}

/* Glow effects */
.text-glow {
    text-shadow: 0 0 24px rgba(1, 127, 140, 0.16);
}

.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}
.cta-button:hover::after {
    left: 150%;
}

/* Timeline Layout (Process) */
.timeline-process {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline-process::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(0,0,0,0.05));
}
.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}
.timeline-step .step-number {
    width: 80px; height: 80px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16, 51, 79, 0.4);
    z-index: 1;
}
.timeline-step .step-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-grow: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-step .step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.timeline-step .step-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
}
.timeline-step .step-content p {
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline-process::before {
        left: 30px;
    }
    .timeline-step {
        gap: 18px;
    }
    .timeline-step .step-number {
        width: 60px; height: 60px;
        font-size: 20px;
    }
    .timeline-step .step-content {
        padding: 22px 20px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ===== Absende-Ladeanzeige (Kontakt/Buchung) ===== */
@keyframes kvspin{to{transform:rotate(360deg)}}
.btn-spinner::before{content:"";display:inline-block;width:14px;height:14px;margin-right:8px;vertical-align:-2px;border:2px solid currentColor;border-right-color:transparent;border-radius:50%;animation:kvspin .7s linear infinite}
form.is-submitting input,form.is-submitting select,form.is-submitting textarea{opacity:.55}

/* ===== Wiederholbare Scroll-Reveals (Startseite) ===== */

/* "Fuer alle Bereiche Ihres Unternehmens": Karten "dealen" sich gestreut/gedreht aus einem
   imaginaeren Stapel in ihre Position, Icons drehen sich beim Landen mit Bounce ein. */
.usecase-section .feature-card {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.5s ease, filter 0.6s ease, transform 0.95s cubic-bezier(.34,1.56,.64,1);
}
.usecase-section .feature-card:nth-child(1) { transform: scale(0.3) rotate(-35deg) translate(-170px, -50px); transition-delay: 0.05s; }
.usecase-section .feature-card:nth-child(2) { transform: scale(0.3) rotate(28deg) translate(160px, -90px); transition-delay: 0.35s; }
.usecase-section .feature-card:nth-child(3) { transform: scale(0.3) rotate(-22deg) translate(-140px, 90px); transition-delay: 0.15s; }
.usecase-section .feature-card:nth-child(4) { transform: scale(0.3) rotate(32deg) translate(150px, 70px); transition-delay: 0.5s; }
.usecase-section .feature-card:nth-child(5) { transform: scale(0.3) rotate(-30deg) translate(-90px, -140px); transition-delay: 0.25s; }
.usecase-section .feature-card:nth-child(6) { transform: scale(0.3) rotate(24deg) translate(110px, 120px); transition-delay: 0.42s; }
.usecase-section .feature-card.in-view {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) rotate(0deg) translate(0, 0);
}

.usecase-section .feature-icon {
    transform: scale(0.15) rotate(-190deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
}
.usecase-section .feature-card:nth-child(1) .feature-icon { transition-delay: 0.3s; }
.usecase-section .feature-card:nth-child(2) .feature-icon { transition-delay: 0.6s; }
.usecase-section .feature-card:nth-child(3) .feature-icon { transition-delay: 0.4s; }
.usecase-section .feature-card:nth-child(4) .feature-icon { transition-delay: 0.75s; }
.usecase-section .feature-card:nth-child(5) .feature-icon { transition-delay: 0.5s; }
.usecase-section .feature-card:nth-child(6) .feature-icon { transition-delay: 0.67s; }
.usecase-section .feature-card.in-view .feature-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

/* "Drei Disziplinen. Ein Partner.": Blur-Fokus-Cascade mit 3D-Neigung + ziehender Akzentleiste */
.pillar-card {
    opacity: 0;
    filter: blur(12px);
    transform: perspective(1000px) rotateX(20deg) translateY(60px) scale(0.92);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pillar-card.in-view {
    opacity: 1;
    filter: blur(0);
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}
.pillar-card.in-view:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-6px) scale(1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pillar-card:nth-child(1) {
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1) 0s, transform 0.8s cubic-bezier(.16,1,.3,1) 0s, filter 0.8s cubic-bezier(.16,1,.3,1) 0s, box-shadow 0.3s ease 0s;
}
.pillar-card:nth-child(2) {
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1) 0.15s, transform 0.8s cubic-bezier(.16,1,.3,1) 0.15s, filter 0.8s cubic-bezier(.16,1,.3,1) 0.15s, box-shadow 0.3s ease 0s;
}
.pillar-card:nth-child(3) {
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1) 0.3s, transform 0.8s cubic-bezier(.16,1,.3,1) 0.3s, filter 0.8s cubic-bezier(.16,1,.3,1) 0.3s, box-shadow 0.3s ease 0s;
}
.pillar-bar {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(.65,0,.35,1);
    transition-delay: 0.3s;
}
.pillar-card.in-view .pillar-bar { transform: scaleX(1); }
.pillar-card:nth-child(2) .pillar-bar { transition-delay: 0.45s; }
.pillar-card:nth-child(3) .pillar-bar { transition-delay: 0.6s; }

/* "Kennen Sie das?": Problem/Loesung schieben sich aus entgegengesetzten Seiten ein, Listen kaskadieren */
.split-card {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.split-card.problem { transform: translateX(-70px) rotate(-2deg); }
.split-card.solution { transform: translateX(70px) rotate(2deg); transition-delay: 0.15s; }
.split-card.in-view { opacity: 1; transform: translateX(0) rotate(0deg); }
.split-card li {
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.split-card.in-view li { opacity: 1; transform: translateX(0); }
.split-card li:nth-child(1) { transition-delay: 0.2s; }
.split-card li:nth-child(2) { transition-delay: 0.32s; }
.split-card li:nth-child(3) { transition-delay: 0.44s; }
.split-card li:nth-child(4) { transition-delay: 0.56s; }
.split-card li:nth-child(5) { transition-delay: 0.68s; }

/* "Webseiten fuer lokale Unternehmen...": Bild-Vorhang-Reveal per clip-path + Text schiebt nach */
.gmap-pitch .gmap-media img {
    clip-path: inset(0 0 100% 0);
    transform: scale(1.12);
    transition: clip-path 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}
.gmap-pitch.in-view .gmap-media img {
    clip-path: inset(0 0 0% 0);
    transform: scale(1);
}
.gmap-pitch .gmap-copy {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}
.gmap-pitch.in-view .gmap-copy { opacity: 1; transform: translateX(0); }

/* "In 4 Schritten...": Verbindungslinie zeichnet sich, Schritte poppen nacheinander mit Bounce */
.timeline-process::before {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.65,0,.35,1);
}
.timeline-process.in-view::before { transform: scaleY(1); }
.timeline-step {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s cubic-bezier(.34,1.56,.64,1), transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.timeline-process.in-view .timeline-step { opacity: 1; transform: translateX(0); }
.timeline-step:nth-child(1) { transition-delay: 0.1s; }
.timeline-step:nth-child(2) { transition-delay: 0.4s; }
.timeline-step:nth-child(3) { transition-delay: 0.7s; }
.timeline-step:nth-child(4) { transition-delay: 1.0s; }
.timeline-step .step-number {
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.timeline-process.in-view .timeline-step .step-number { transform: scale(1); }
.timeline-step:nth-child(1) .step-number { transition-delay: 0.25s; }
.timeline-step:nth-child(2) .step-number { transition-delay: 0.55s; }
.timeline-step:nth-child(3) .step-number { transition-delay: 0.85s; }
.timeline-step:nth-child(4) .step-number { transition-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
    .usecase-section .feature-card,
    .usecase-section .feature-icon,
    .pillar-card,
    .pillar-bar,
    .split-card,
    .split-card li,
    .gmap-pitch .gmap-media img,
    .gmap-pitch .gmap-copy,
    .timeline-process::before,
    .timeline-step,
    .timeline-step .step-number {
        opacity: 1;
        filter: none;
        transform: none;
        clip-path: none;
        transition: none;
    }
}
