html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fb;
    color: #1a1a1a;
}

.navbar {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: transparent;
}

.navbar-logo {
    height: 30px;
    width: auto;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    color: #fff;
}

.navbar-logo.visible {
    opacity: 1;
}

.navbar-links {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.navbar-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar-links a.active {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .navbar-links {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-links .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.lang-switch {
    display: flex;
    margin-left: 0.5rem;
}

.lang-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.25);
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero {
    background: linear-gradient(180deg, #0d1f2d 0%, #f8f9ff 98%);
    color: white;
    padding-top: 6rem;
    padding-bottom: 2rem;
    text-align: center;
}

/* Hero Video Background */
.hero.hero-video {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 35%, #1e4a6d 70%, #2a6080 100%);
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.hero-video-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, #f8f9fb 100%);
    pointer-events: none;
}

.hero.hero-video .hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 4rem;
}

.hero-glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3.5rem 4rem;
    max-width: 580px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    color: #000;
    margin-top: 4rem;
}

.hero-glass-panel h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-glass-panel .cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-glass-panel .btn.secondary,
.hero-glass-panel .btn.primary-dark {
    width: 180px;
    text-align: center;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    margin: 0;
}

.hero-glass-panel .waitlist-hint {
    text-align: center;
    margin-top: 2.5rem;
    color: #000;
    font-size: 0.95rem;
}

/* Mehr erfahren Link */
.btn-text {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1rem;
}

.btn-text:hover {
    opacity: 0.7;
}

.btn-text::after {
    content: '↓';
}

/* Hero Phone Mockup */
.hero-phone-mockup {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
}

.hero-phone-mockup.visible {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    pointer-events: all;
}

.hero-phone-mockup .phone-device {
    position: relative;
    width: 340px;
    padding: 14px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 48px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-phone-mockup .phone-device::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.hero-phone-mockup .phone-device::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    z-index: 11;
}

.hero-phone-mockup .phone-device video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
}

.hero-phone-mockup .phone-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 20;
}

.hero-phone-mockup .phone-close-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.hero-phone-mockup .phone-close-btn svg {
    width: 18px;
    height: 18px;
    color: #333;
}

/* Mobile Phone Mockup */
@media (max-width: 768px) {
    .hero-phone-mockup {
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0.9);
    }

    .hero-phone-mockup.visible {
        transform: translate(50%, -50%) scale(1);
    }

    .hero-phone-mockup .phone-device {
        width: 280px;
    }

    .hero-phone-mockup .phone-close-btn {
        top: -10px;
        right: -10px;
    }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.benefits-section .subline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.app-preview-container {
    display: flex;
    justify-content: center;
}

.phone-frame-large {
    position: relative;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 44px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-frame-large::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.phone-frame-large::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    z-index: 11;
}

.phone-frame-large video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

    .benefits-section {
        padding: 3rem 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }
}

.hero-logo-left {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

/* Hero Email Form - Desktop */
.hero-waitlist-container {
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.hero-waitlist-trigger {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-email-form {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    animation: fadeInUp 0.4s ease-out;
}

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

.hero-email-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.hero-email-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.hero-email-form input[type="email"]::placeholder {
    color: #888;
}

.hero-submit-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d1f2d, #1e4a6d, #2a6080);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(30, 73, 118, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(30, 73, 118, 0.4);
}

.hero-submit-btn svg {
    color: white;
    stroke: white;
}

.hero-email-form .btn {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 50px;
}

.hero-waitlist-success {
    color: #18344d;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero.hero-video .hero-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        padding-top: 60px;
        padding-bottom: 3rem;
        min-height: 100vh;
        position: relative;
    }

    .hero-glass-panel {
        text-align: center;
        max-width: 280px;
        width: auto;
        margin: 0 auto;
        padding: 1.75rem 1.25rem;
    }

    .hero-glass-panel h1 {
        font-size: 1.6rem;
    }

    .hero-glass-panel .cta-buttons {
        justify-content: center;
        width: auto;
    }

    .hero-glass-panel .btn.secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-glass-panel .waitlist-hint {
        text-align: center;
    }

    .hero-logo-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 25vh;
        margin-top: 10vh;
    }

    .hero-waitlist-container {
        max-width: 320px;
    }

    .hero-waitlist-trigger {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .hero-email-form {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-email-form input[type="email"] {
        flex: 1;
        min-width: 0;
        padding: 0.9rem 1.25rem;
        border: none;
        border-radius: 50px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .hero-email-form input[type="email"]:focus {
        outline: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .hero-email-form input[type="email"]::placeholder {
        color: #888;
    }

    .hero-submit-btn {
        width: 44px;
        height: 44px;
    }

    .hero-email-form .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 50px;
    }

    .hero-waitlist-success {
        color: #18344d;
        font-weight: 600;
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    .hero-logo-left {
        position: static;
        transform: none;
        height: 70px;
    }
}

.hero-logo {
    height: 80px;
    max-width: 200px;
    width: auto;
    display: block;
    margin: 0 0 1.5rem 0;
    padding-top: 1rem;
    transition: all 0.3s ease;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.hero-screenshot {
    flex: 1;
    text-align: center;
    max-width: 360px;
    margin-left: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.hero-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transform: scale(0.80);
    transform-origin: center center;
}

/* Sichtbarkeit nach Gerät */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .hero-wrapper {
        align-items: center;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-screenshot {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-screenshot img {
        transform: scale(1);
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 2rem;
    }

    .hero-left {
        order: 1;
    }

    .hero-screenshot {
        order: 2;
    }

    .segment-select {
        order: 3;
    }

    .hero-logo {
        margin: 1rem auto 1.5rem auto;
        padding-top: 0;
    }

    .cta-buttons {
        flex-direction: column !important;
        width: 100%;
    }

    .segments {
        flex-direction: column;
    }

    .segment {
        margin: 0.3rem 0;
    }

    .segment-select p {
        color: #1a1a1a;
    }
}

@media (min-width: 769px) {
    .segments {
        flex-direction: row !important;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .segment {
        margin: 0;
        flex: 1;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: row;
        width: 100%;
    }

    .segment-select p {
        color: white !important;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7);
    }
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease-in-out;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

.hero-left .cta-buttons {
    justify-content: flex-start;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons .btn {
    flex: 0 1 auto;
    text-align: center;
    min-width: 240px;
    padding: 0.75rem 2.5rem;
}

.btn.primary {
    background: linear-gradient(135deg, #0d1f2d, #18344d, #2a6080);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(24, 52, 77, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Shimmer removed */

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(24, 52, 77, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(24, 52, 77, 0.6), 0 0 40px rgba(24, 52, 77, 0.2);
    }
}

@keyframes primaryShimmer {
    0% {
        left: -75%;
    }
    50%, 100% {
        left: 125%;
    }
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(24, 52, 77, 0.5);
}

.btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Dark Blue Button mit Shimmer */
.btn.primary-dark {
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.3);
    display: inline-block;
}

.btn.primary-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

.btn.primary-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(24, 52, 77, 0.4);
}

.segment-select p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.segments {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.segment {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    color: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.segment:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.segment.active {
    background: #fff;
    color: #18344d;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(24, 52, 77, 0.2);
}

.branchen-section {
    padding: 5rem 0 2rem 0;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

.branchen-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.branchen-section p {
    font-size: 1rem;
    color: #444;
    text-align: center;
}

.branchen-section .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.branchen-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: #f4f4f4;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: #1e4a6d;
}

.feature p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.visual {
    text-align: center;
    margin: 2rem 0;
}

.visual img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials {
    margin-top: 3rem;
    background: #f9f9f9;
    padding: 2rem 1rem;
    border-radius: 8px;
}

.testimonial {
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-style: italic;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial span {
    font-weight: bold;
    color: #1e4a6d;
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, #eeeeee 25%, #dddddd 50%, #eeeeee 75%);
    background-size: 200% 100%;
    animation: shine 1.5s infinite linear;
    border-radius: 6px;
    height: 1.2rem;
    margin: 0.5rem 0;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.painpoints-intro {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
}

.painpoints-intro .container {
    position: relative;
    max-width: 1200px;
}

.painpoints-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.painpoints-intro .subline {
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.pain-list {
    /* Signalrot */
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.05rem;
}

.pain-list li {
    position: relative;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow:
        0px 0 12px rgba(224, 49, 49, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Problems Carousel Styles */
.problems-carousel {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    min-height: 140px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 140px;
    padding: 1.5rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    background-color: white;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.carousel-slide p {
    margin: 0;
    line-height: 1.6;
    width: 100%;
    word-wrap: break-word;
}

.carousel-btn {
    position: absolute;
    top: 70px;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #18344d;
    color: #18344d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(24, 52, 77, 0.2);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover:not(:disabled) {
    background: #18344d;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 52, 77, 0.3);
    transform: translateY(-50%) scale(1.05);
}

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn-prev {
    left: -1rem;
}

.carousel-btn-next {
    right: -1rem;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-indicator.active {
    background: #18344d;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .problems-carousel {
        padding: 0 2.5rem;
        max-width: 100%;
    }

    .carousel-container {
        min-height: 120px;
    }

    .carousel-slide {
        min-height: 120px;
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn-prev {
        left: -0.5rem;
    }

    .carousel-btn-next {
        right: -0.5rem;
    }
}

/* Features Showcase Styles */
.features-showcase {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
}

.features-showcase h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.features-showcase .subline {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-carousel {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 3rem;
}

.feature-carousel-container {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.feature-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.feature-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.feature-slide.active {
    opacity: 1;
    visibility: visible;
}

.feature-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transform: scale(0.80);
    transform-origin: center center;
    margin-bottom: 0.75rem;
}

.feature-slide-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-slide-content h3 {
    font-size: 1.3rem;
    color: #18344d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-slide-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.feature-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #18344d;
    color: #18344d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(24, 52, 77, 0.2);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.feature-carousel-btn:hover:not(:disabled) {
    background: #18344d;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 52, 77, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.feature-carousel-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.feature-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.feature-carousel-btn-prev {
    left: 0.25rem;
}

.feature-carousel-btn-next {
    right: 0.25rem;
}

.feature-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.feature-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.feature-carousel-indicator.active {
    background: #18344d;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .features-showcase {
        padding: 2rem 1.5rem;
    }

    .features-showcase h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .features-showcase .subline {
        margin-bottom: 0.75rem;
    }

    .features-carousel {
        padding: 0 1rem;
        max-width: 100%;
        margin-top: 0;
    }

    .feature-slide-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .feature-slide-content h3 {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .feature-slide img {
        margin-bottom: 0.25rem;
    }

    .feature-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .feature-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .feature-carousel-btn-prev {
        left: 0.25rem;
    }

    .feature-carousel-btn-next {
        right: 0.25rem;
    }
}

.transition {
    color: #18344d;
    padding: 1.25rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2rem;
    text-shadow: 0 0 20px rgba(24, 52, 77, 0.4);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(24, 52, 77, 0.25);
}

/* Solution Section Full Page */
.solution-section-full {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.solution-section-full .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Solution Section Styles */
.solution-section {
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.solution-section h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.solution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(24, 52, 77, 0.1);
    border-color: rgba(24, 52, 77, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(24, 52, 77, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18344d;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-card:hover .card-icon {
    background: #18344d;
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.solution-card h4 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.solution-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.card-extra {
    margin-top: 1.5rem !important;
    font-weight: 600;
    color: #18344d !important;
    font-size: 0.95rem !important;
}

.highlight-blue {
    color: #18344d;
    font-weight: 700;
    display: block;
    margin-top: auto;
    padding-top: 1.5rem;
}

.solution-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
}

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

@media (max-width: 768px) {
    .solution-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .solution-card {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .card-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.problemloesung {
    padding: 3rem 1rem;
    background: #ffffff;
}

.problemloesung h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.problem-card {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow:
        0px 0 12px rgba(24, 52, 77, 0.4),
        /* lila Glow */
        0 2px 6px rgba(0, 0, 0, 0.05);
    /* leichter Softshadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0px 0 16px rgba(24, 52, 77, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.06);
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
}

.problem-text {
    color: #aa0000;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
}

.problem-card .loesung-text {
    color: #18344d !important;
    font-weight: 500;
    text-align: center;
}

/* Responsive Grid */


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.branchen-subline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.feature.highlight {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow:
        0px 0 12px rgba(24, 52, 77, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature.highlight h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: #1e4a6d;
    text-align: center;
}

.feature.highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    text-align: center;
}

.branchen-visual {
    text-align: center;
    margin: 2rem 0;
}

.branchen-visual img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card {
    background: #eafff1;
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.testimonial-card span {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: #1e4a6d;
}

.cta-final {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 20%);
    padding: 5rem 1.5rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-final .subline {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-final .cta-buttons .btn {
    min-width: 240px;
    padding: 0.75rem 2.5rem;
}

.cta-final .trust-note {
    font-size: 0.9rem;
    color: #777;
}

.cta-final .container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 0;
    z-index: 999;
}

.sticky-cta .btn.full {
    flex: 1;
    border-radius: 0;
    padding: 1rem;
    font-size: 0.7rem;
    text-align: center;
    border: none;
}

.sticky-cta .btn.primary.full {
    background: linear-gradient(135deg, #0d1f2d, #18344d, #2a6080);
}

.sticky-cta .btn.secondary.full {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    border-left: 1px solid #eee;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.preissektion {
    padding: 5rem 1.5rem 2rem 1.5rem;
    background: #fff;
    text-align: center;
}

.preissektion h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.preissektion .subline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.preissektion .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    grid-column: 1 / -1;
}

@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        gap: 2.5rem;
    }

    .price-card {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

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

.price-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    background: #fafafa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.price-card:hover {
    border-color: #18344d;
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.15);
    transform: translateY(-2px);
}

.price-card.recommended {
    border: 2px solid #18344d;
    background: #f5f4ff;
}

.price-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    color: #444;
    font-size: 0.95rem;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: #18344d;
    border-radius: 50%;
}

.price-card ul li .feature-link {
    text-decoration: underline;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.price-card ul li .feature-link:hover {
    color: #18344d;
}

.price-card ul li .popup-icon {
    color: #1a1a1a;
    flex-shrink: 0;
    vertical-align: middle;
}



/* Problems Grid Styles */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .problem-card {
        padding: 1.5rem;
    }
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 52, 77, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #f5f5f7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.problem-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Feature Modal Styles */
.feature-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.feature-modal.active {
    display: flex;
}

.feature-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.feature-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.feature-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    color: #333;
}

.feature-modal-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.feature-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.feature-modal-body h2 {
    margin: 0 0 1.5rem 0;
    color: #18344d;
    font-size: 1.25rem;
    text-align: center;
    word-wrap: break-word;
    font-weight: 500;
}

.feature-modal-gif-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.feature-modal-gif-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .feature-modal {
        padding: 0;
    }

    .feature-modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .feature-modal-body {
        padding: 1rem;
        padding-top: 3rem;
    }

    .feature-modal-body h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .feature-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .feature-modal-gif-container {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .feature-modal-body {
        padding: 0.75rem;
        padding-top: 2.5rem;
    }

    .feature-modal-body h2 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
    }
}

/* Waitlist Modal */
.waitlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.waitlist-modal.active {
    display: flex;
}

.waitlist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.waitlist-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 380px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.waitlist-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.waitlist-modal-close:hover {
    color: #000;
}

.waitlist-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #18344d;
}

.waitlist-modal p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.waitlist-modal input[type="email"] {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.waitlist-modal input[type="email"]:focus {
    outline: none;
    border-color: #18344d;
}

.waitlist-modal .btn {
    width: 100%;
}

.waitlist-modal .waitlist-success {
    color: #18344d;
    font-weight: 500;
}

.btn.small {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 25px;
}

.label-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #18344d;
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.fade-seq {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-seq.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    background: #18344d;
    padding: 3rem 0 6rem 0;
    border-top: none;
    text-align: center;
}

.footer-logo {
    display: block;
    margin: 0 auto 2rem auto;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-downloads {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.footer-downloads-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 1rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) {
    .footer {
        padding-bottom: 3rem;
    }
}

/* Phone Frame Styles */
.phone-frame {
    position: relative;
    border: 10px solid #1c1c1e;
    /* Dark bezel */
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(99, 86, 229, 0.35);
    /* Premium shadow */
    transform: translateZ(0);
    /* Fix for Safari border-radius overflow */
    box-sizing: content-box;
    /* To ensure border adds to width */
    /* Constrain children - fixes Brave oversized video issue */
    max-width: 100%;
    contain: layout;
}

.phone-frame video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    /* Inner radius matching bezel */
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
    object-fit: contain;
    /* Prevent Brave/privacy-focused browsers from rendering oversized */
    aspect-ratio: 886 / 1920;
}

/* Add slight shine reflection on bezel */
/* Add slight shine reflection on bezel */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 30px 30px 0 0;
}

/* Desktop only margin for phone frame */
@media (min-width: 769px) {
    .hero .phone-frame {
        margin-top: 8rem;
        /* Spacing from navbar */
        max-width: 300px;
    }
}

/* Mobile Navbar Styles */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-navbar.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-navbar .navbar-logo {
    color: #000;
    height: 30px;
    width: auto;
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

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

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 52, 77, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-navbar {
        display: flex;
    }

    .hero {
        padding-top: 5rem;
    }
}

/* Erstgespräch Dialog Styles */
.initial-consultation-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.initial-consultation-dialog.active {
    display: flex;
}

.dialog-content {
    background: white;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

#form-container {
    width: 100%;
    height: 100%;
}

#booking-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

.success-message {
    padding: 30px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    margin-bottom: 10px;
    color: #333;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .dialog-content {
        width: 95%;
        margin: 20px;
    }

    #booking-iframe {
        height: 500px;
    }
}

.floating-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    animation: float 2s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
}

@media (max-width: 768px) {
    .floating-arrow {
        bottom: 80px;
    }
}

.floating-arrow.hidden {
    opacity: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Wiki Hero Styles */
.wiki-hero {
    background: linear-gradient(180deg, #18344d 0%, #f8f9ff 98%);
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.wiki-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wiki-hero .subline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Wiki Styles */
.wiki-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.wiki-breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.wiki-breadcrumb a {
    color: #18344d;
    text-decoration: none;
}

.wiki-breadcrumb a:hover {
    text-decoration: underline;
}

.wiki-categories {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.wiki-category {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.1);
    border: 1px solid rgba(24, 52, 77, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wiki-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(24, 52, 77, 0.15);
}

.wiki-category h2 {
    margin-bottom: 1rem;
    color: #18344d;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.wiki-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #18344d, #25425c);
    border-radius: 3px;
}

.wiki-articles {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.wiki-article-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(24, 52, 77, 0.1);
    position: relative;
    overflow: hidden;
}

.wiki-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 52, 77, 0.1), rgba(37, 66, 92, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wiki-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.15);
    border-color: rgba(24, 52, 77, 0.3);
}

.wiki-article-card:hover::before {
    opacity: 1;
}

.wiki-article-card h3 {
    color: #18344d;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.wiki-article-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.wiki-article {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.1);
    border: 1px solid rgba(24, 52, 77, 0.1);
}

.wiki-article h1 {
    margin-bottom: 1.5rem;
    color: #18344d;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.wiki-article h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #18344d, #25425c);
    border-radius: 3px;
}

.wiki-article h2 {
    margin: 2rem 0 1rem;
    color: #18344d;
    font-size: 1.5rem;
}

.wiki-article h3 {
    margin: 1.5rem 0 1rem;
    color: #333;
}

.wiki-article h4 {
    margin: 1.25rem 0 0.75rem;
    color: #444;
}

.wiki-article p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

.wiki-article ul,
.wiki-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.wiki-article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.wiki-article strong {
    color: #18344d;
}

.wiki-cta {
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
    color: white;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(24, 52, 77, 0.2);
    position: relative;
    overflow: hidden;
}

.wiki-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.wiki-cta h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.wiki-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
}

.wiki-cta .btn {
    background: white;
    color: #18344d;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.wiki-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .wiki-hero {
        padding: 6rem 0 3rem 0;
    }

    .wiki-hero h1 {
        font-size: 2rem;
    }

    .wiki-hero .subline {
        font-size: 1.1rem;
    }

    .wiki-articles {
        grid-template-columns: 1fr;
    }

    .wiki-article {
        padding: 1.5rem;
    }

    .wiki-cta {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}

/* Download Buttons Styles */
.download-buttons {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.download-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn-custom {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 30%, #2a2a2a 60%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.download-btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shimmer 3s infinite;
}

.download-btn-custom:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 30%, #3a3a3a 60%, #2a2a2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.download-btn-custom img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.download-btn-custom span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Specific styling for different sections */
.hero .download-buttons .download-label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-final .download-buttons .download-label {
    color: #666;
    text-shadow: none;
}

.cta-final .download-buttons {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Design for Download Buttons */
@media (max-width: 480px) {
    .download-badges {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
    }

    .download-btn-custom {
        flex: 1;
        padding: 0.75rem 0.75rem;
        gap: 0.5rem;
        font-size: 0.8rem;
        min-width: 0;
    }

    .download-btn-custom img {
        height: 20px;
        width: 20px;
        flex-shrink: 0;
    }

    .download-btn-custom span {
        font-size: 0.8rem;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
    }

    .download-buttons {
        margin-top: 1.25rem;
    }

    .download-label {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .cta-buttons .btn {
        flex: 1;
        text-align: center;
        min-width: 240px;
        padding: 0.75rem 2.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .download-badges {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .download-btn-custom {
        width: 170px;
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }

    .download-btn-custom img {
        height: 19px;
        width: 19px;
    }

    .download-btn-custom span {
        font-size: 0.85rem;
    }

    .download-buttons {
        margin-top: 1.5rem;
    }

    .download-label {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 769px) {
    .download-badges {
        gap: 1rem;
    }

    .download-btn-custom {
        flex: 1;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 1200px) {
    .download-badges {
        gap: 1rem;
    }

    .download-btn-custom {
        flex: 1;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        gap: 0.6rem;
    }

    .download-btn-custom img {
        height: 22px;
        width: 22px;
    }

    .download-btn-custom span {
        font-size: 0.95rem;
    }
}

/* ===== FAQ Section Styles ===== */
.faq-section {
    background: linear-gradient(135deg, #18344d 0%, #2a5f8a 100%);
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.faq-section .subline {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-accordion {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.faq-item-accordion.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question-btn span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s ease;
}

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

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-accordion.active .faq-answer-content {
    max-height: 300px;
}

.faq-answer-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content strong {
    color: #fff;
    font-weight: 600;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-more-link {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.faq-more-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-section .subline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-question-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer-content p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== Discovery Call Wizard Styles ===== */

.discovery-wizard-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.discovery-wizard-overlay.active {
    display: flex;
}

.discovery-wizard-modal {
    background: white;
    border-radius: 24px;
    width: 90vw;
    max-width: 800px;
    min-height: 650px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 3.5rem 3rem 3rem;
    box-shadow: 0 25px 80px rgba(24, 52, 77, 0.25);
    animation: wizardSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

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

.wizard-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.discovery-wizard-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.discovery-wizard-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.discovery-wizard-close svg {
    width: 18px;
    height: 18px;
}

/* Progress Indicator */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.wizard-progress-line {
    position: absolute;
    top: 15px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: rgba(24, 52, 77, 0.15);
    border-radius: 2px;
    z-index: 0;
}

.wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #18344d, #25425c);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-checkpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.checkpoint-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(24, 52, 77, 0.1);
    color: #18344d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.wizard-checkpoint.active .checkpoint-circle {
    background: white;
    border-color: #18344d;
    box-shadow: 0 0 0 4px rgba(24, 52, 77, 0.2);
}

.wizard-checkpoint.completed .checkpoint-circle {
    background: linear-gradient(135deg, #0d1f2d, #18344d, #2a6080);
    color: white;
    border-color: #18344d;
}

.wizard-checkpoint span {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wizard-checkpoint.active span {
    color: #18344d;
}

/* Wizard Steps */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease;
}

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

.wizard-step-content {
    text-align: center;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizard-step h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.wizard-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Substeps (for Step 1 slide animation) */
.wizard-substep {
    display: none;
    width: 100%;
}

.wizard-substep.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: substepSlide 0.4s ease;
}

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

/* Wizard Input */
.wizard-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fb;
}

.wizard-input:focus {
    border-color: #18344d;
    background: white;
    box-shadow: 0 0 0 4px rgba(24, 52, 77, 0.1);
}

.wizard-input.small {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    flex: 1;
}

.wizard-input.shake {
    animation: shake 0.5s ease;
    border-color: #ff4f4f;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* Autocomplete */
.autocomplete-wrapper,
.input-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem;
    text-align: center;
}

.autocomplete-wrapper .wizard-input,
.input-wrapper .wizard-input {
    text-align: center;
}

@media (max-width: 600px) {
    .autocomplete-wrapper,
    .input-wrapper {
        max-width: 280px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .wizard-input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
}

.wizard-substep .wizard-btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}

.wizard-substep h2,
.wizard-substep .wizard-subtitle {
    width: 100%;
}

.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-align: left;
}

.autocomplete-item:hover {
    background: rgba(24, 52, 77, 0.08);
    color: #18344d;
}

/* Wizard Buttons */
.wizard-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: 1.5rem;
}

.wizard-btn.primary {
    background: linear-gradient(135deg, #0d1f2d, #18344d, #2a6080);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 52, 77, 0.3);
}

.wizard-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 52, 77, 0.4);
}

.wizard-btn.secondary {
    background: #f0f0f5;
    color: #18344d;
}

.wizard-btn.secondary:hover {
    background: #e5e5ee;
}

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

/* Field Groups */
.wizard-field-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.wizard-field-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.75rem;
}

/* Segmented Control */
.segmented-control {
    display: flex;
    background: #f0f0f5;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.segment-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.segment-btn.active {
    background: white;
    color: #18344d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.segment-btn:hover:not(.active) {
    color: #18344d;
}

/* Department Chips */
.department-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    min-height: 40px;
}

.department-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(24, 52, 77, 0.1);
    color: #18344d;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: chipPop 0.3s ease;
}

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

.chip-remove {
    background: none;
    border: none;
    color: #18344d;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.chip-remove:hover {
    opacity: 1;
}

.department-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.add-btn {
    width: 44px;
    height: 44px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: transparent;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn:hover {
    border-color: #18344d;
    color: #18344d;
    background: rgba(24, 52, 77, 0.05);
}

/* Worker Types */
.worker-types {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.worker-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fb;
    border-radius: 16px;
    flex: 1;
    max-width: 140px;
}

.worker-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worker-icon svg {
    width: 28px;
    height: 28px;
}

.worker-icon.fulltime {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.worker-icon.parttime {
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
}

.worker-icon.minijob {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
}

.worker-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.worker-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #18344d;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.counter-btn:hover {
    background: #18344d;
    color: white;
    transform: scale(1.1);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 32px;
    text-align: center;
}

/* Preview Sequence Animation */
.preview-sequence {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
}

.sequence-intro {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 500px;
}

.sequence-intro.active {
    opacity: 1;
    transform: translateY(0);
}

.sequence-intro.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.sequence-intro h2 {
    font-size: 1.75rem;
    color: #18344d;
    font-weight: 600;
    line-height: 1.4;
}

.preview-final-content {
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-final-content.visible {
    opacity: 1 !important;
}

.preview-sequence.hidden {
    display: none;
}

/* Preview Section */
.preview-problem-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.problem-title-chip {
    background: linear-gradient(135deg, rgba(24, 52, 77, 0.1), rgba(37, 66, 92, 0.15));
    color: #18344d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(24, 52, 77, 0.2);
}

.preview-video-container {
    background: #f0f0f5;
    border-radius: 16px;
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
}

.preview-placeholder,
.preview-loading {
    text-align: center;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.preview-icon {
    width: 80px;
    height: 80px;
    background: rgba(24, 52, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #18344d;
    font-size: 2rem;
}

.preview-placeholder p,
.preview-loading p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Video Loading State */
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(24, 52, 77, 0.2);
    border-top-color: #18344d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.video-progress {
    width: 200px;
    height: 6px;
    background: rgba(24, 52, 77, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #18344d, #25425c);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.video-progress-text {
    font-size: 0.8rem;
    color: #18344d;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Video Element */
.preview-video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d1f2d 0%, #18344d 50%, #1e4a6d 100%);
    object-fit: cover;
}

/* Suitability Analysis Container */
.suitability-container {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f0f5 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 2px solid rgba(24, 52, 77, 0.1);
    box-shadow: 0 10px 40px rgba(24, 52, 77, 0.08);
}

.suitability-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    color: #666;
}

.suitability-loading p {
    margin-top: 1rem;
    font-size: 0.95rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.suitability-result {
    overflow: hidden;
}

.suitability-score-container {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    animation: scoreReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scoreReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.suitability-score-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.suitability-score-ring svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.suitability-score-ring .ring-bg {
    fill: none;
    stroke: rgba(24, 52, 77, 0.15);
    stroke-width: 8;
}

.suitability-score-ring .ring-progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.suitability-score-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.suitability-score {
    font-size: 2.25rem;
    font-weight: 800;
    color: #18344d;
    line-height: 1;
}

.suitability-score-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e4a6d;
    margin-left: 2px;
}

.suitability-headline {
    font-size: 1.3rem;
    color: #18344d;
    font-weight: 700;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

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

.suitability-reasons {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.suitability-reasons li {
    position: relative;
    padding: 0.875rem 0 0.875rem 2.5rem;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid rgba(24, 52, 77, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    animation: reasonSlideIn 0.4s ease forwards;
}

.suitability-reasons li:nth-child(1) { animation-delay: 0.5s; }
.suitability-reasons li:nth-child(2) { animation-delay: 0.65s; }
.suitability-reasons li:nth-child(3) { animation-delay: 0.8s; }

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

.suitability-reasons li:last-child {
    border-bottom: none;
}

.suitability-reasons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0d1f2d, #18344d, #2a6080);
    border-radius: 50%;
    animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 2px 8px rgba(24, 52, 77, 0.3);
}

.suitability-reasons li:nth-child(1)::before { animation-delay: 0.6s; }
.suitability-reasons li:nth-child(2)::before { animation-delay: 0.75s; }
.suitability-reasons li:nth-child(3)::before { animation-delay: 0.9s; }

@keyframes checkPop {
    to {
        transform: translateY(-50%) scale(1);
    }
}

.suitability-reasons li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    animation: checkFadeIn 0.2s ease forwards;
}

.suitability-reasons li:nth-child(1)::after { animation-delay: 0.7s; }
.suitability-reasons li:nth-child(2)::after { animation-delay: 0.85s; }
.suitability-reasons li:nth-child(3)::after { animation-delay: 1s; }

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

.suitability-recommendation {
    background: linear-gradient(135deg, rgba(24, 52, 77, 0.08), rgba(37, 66, 92, 0.12));
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 0.95rem;
    color: #18344d;
    font-weight: 500;
    margin: 0;
    border: 1px solid rgba(24, 52, 77, 0.15);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.5s ease forwards;
    animation-delay: 1s;
    line-height: 1.5;
}

.suitability-recommendation::before {
    content: '💡';
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Confetti Animation for high scores */
.suitability-container.celebrate {
    position: relative;
    overflow: visible;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
}

.confetti.active {
    animation: confettiFall 1.5s ease forwards;
}

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

@media (max-width: 600px) {
    .suitability-container {
        padding: 1.5rem;
        max-width: 100%;
        border-radius: 20px;
    }

    .suitability-score-ring {
        width: 100px;
        height: 100px;
    }

    .suitability-score-ring svg {
        width: 100px;
        height: 100px;
    }

    .suitability-score-ring .ring-bg,
    .suitability-score-ring .ring-progress {
        stroke-width: 6;
    }

    .suitability-score-ring .ring-progress {
        stroke-dasharray: 262;
        stroke-dashoffset: 262;
    }

    .suitability-score {
        font-size: 1.75rem;
    }

    .suitability-score-label {
        font-size: 0.85rem;
    }

    .suitability-headline {
        font-size: 1.15rem;
    }

    .suitability-reasons li {
        font-size: 0.9rem;
        padding-left: 2rem;
    }

    .suitability-reasons li::before {
        width: 20px;
        height: 20px;
    }

    .suitability-reasons li::after {
        left: 5px;
        font-size: 0.65rem;
    }

    .suitability-recommendation {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Final Options */
.wizard-final-options {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.final-option {
    flex: 1;
    background: #f8f9fb;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
}

.final-option h3 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.final-option p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.final-option .wizard-btn {
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.final-divider {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.final-divider span {
    color: #999;
    font-size: 0.85rem;
}

.calendly-btn {
    text-decoration: none;
}

/* Discovery Wizard - Mobile Responsive */
@media (max-width: 768px) {
    .preview-video-container {
        max-width: 240px;
        max-height: 420px;
    }
    
    .preview-placeholder,
    .preview-loading {
        min-height: 280px;
    }
    
    .wizard-final-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .final-divider {
        padding: 0.5rem 0;
    }
    
    .final-divider span {
        width: 100%;
        text-align: center;
    }
    
    .preview-problem-titles {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .problem-title-chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .preview-video-container {
        max-width: 200px;
        max-height: 360px;
    }
    
    .preview-placeholder,
    .preview-loading {
        min-height: 240px;
    }
    
    .preview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .discovery-wizard-overlay {
        padding: 1rem;
        align-items: center;
    }

    .discovery-wizard-modal {
        width: calc(100% - 2rem);
        max-width: none;
        padding: 3rem 1.5rem 2rem;
        border-radius: 20px;
        min-height: auto;
        max-height: 90vh;
        margin: 0 auto;
    }

    .wizard-header {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .wizard-progress {
        padding: 0;
        margin-bottom: 1.25rem;
    }

    .wizard-progress-line {
        left: 35px;
        right: 35px;
    }

    .checkpoint-circle {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .wizard-checkpoint span {
        font-size: 0.6rem;
    }

    .wizard-step h2 {
        font-size: 1.15rem;
    }

    .wizard-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .worker-types {
        flex-direction: column;
        gap: 0.75rem;
    }

    .worker-type {
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .wizard-buttons {
        flex-direction: column-reverse;
    }

    .wizard-btn {
        width: 100%;
    }

    .wizard-final-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .final-divider {
        padding: 0.25rem 0;
    }

    .final-option {
        padding: 1rem;
    }
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-form input[type="email"]:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-form button {
    white-space: nowrap;
    flex-shrink: 0;
}

.waitlist-success {
    color: #4ade80;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.waitlist-hint {
    color: #fff;
    font-size: 0.9rem;
    margin-top: -1rem;
    text-align: center;
}

.hero-left .waitlist-hint {
    text-align: left;
}

@media (max-width: 900px) {
    .hero-left .waitlist-hint {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form input[type="email"],
    .waitlist-form button {
        width: 100%;
    }
}