@media (max-width: 480px) {
    .journey-section {
        padding: 1.75rem 0 1.05rem 0;
        overflow: visible;
        scroll-margin-top: 80px;
    }
}
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submission-locked-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: rgba(15, 8, 8, 0.88);
    backdrop-filter: blur(10px);
    z-index: 60;
}

.submission-locked-overlay[hidden] {
    display: none !important;
}

.form-is-locked + #submissionLockedOverlay,
#submissionLockedOverlay:not([hidden]) {
    display: flex;
}

.submission-locked-card {
    max-width: 460px;
    width: 100%;
    background: linear-gradient(145deg, rgba(34, 18, 18, 0.96) 0%, rgba(20, 10, 10, 0.98) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 12px 25px rgba(97, 0, 0, 0.28);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.submission-locked-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.18) 0%, transparent 55%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
    opacity: 0.95;
    pointer-events: none;
}

.submission-locked-card > * {
    position: relative;
    z-index: 2;
}

.submission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #F7D774;
    box-shadow: 0 8px 20px rgba(247, 215, 116, 0.25);
}

.submission-icon svg {
    width: 32px;
    height: 32px;
}

.submission-locked-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #FAF5E6;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.submission-locked-card p {
    color: rgba(250, 245, 230, 0.85);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.submission-locked-card .btn {
    min-width: 220px;
    justify-content: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .submission-locked-overlay {
        padding: 2rem 1rem;
    }

    .submission-locked-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .submission-locked-card h3 {
        font-size: 1.2rem;
    }

    .submission-locked-card p {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .form-step[data-step="3"] .occasion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 2.2vw, 20px);
    }

    .form-step[data-step="4"] .budget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 2.4vw, 22px);
    }

    .form-step[data-step="4"] .budget-card-content {
        padding: clamp(1.6rem, 2.2vw, 1.9rem) clamp(1rem, 1.6vw, 1.25rem);
    }

    .form-step[data-step="6"] .premium-preferences-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(16px, 3vw, 28px);
    }
}
/* ===================================
   MULTISTEP FORM - PREMIUM DESIGN
   Für die 7-stufige Anfrage Journey
   =================================== */
/* ===================================
   MULTISTEP FORM - PREMIUM DESIGN
   Für die 7-stufige Anfrage Journey
   =================================== */

/* Journey Section - Transparent, nutzt globalen Hintergrund */
.journey-section {
    position: relative;
    background: transparent;
    /* Ausgleich für fixen Header: 70px Höhe + Sicherheitsmarge */
    padding: 10rem 0 6rem 0;
    /* Inhalt darf nicht abgeschnitten werden, besonders Titel */
    overflow: visible;
    /* Sauberes Anscrollen unter fixem Header */
    scroll-margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Animation - Atmospheric Orbs */
.journey-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.journey-bg-animation .bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    animation: floatAtmospheric 35s ease-in-out infinite;
}

.journey-bg-animation .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    top: 15%;
    right: 15%;
    animation-duration: 40s;
}

.journey-bg-animation .orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    bottom: 25%;
    left: 20%;
    animation-duration: 45s;
    animation-delay: -15s;
}

.journey-bg-animation .orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(97, 0, 0, 0.08) 0%, transparent 70%);
    top: 65%;
    left: 65%;
    animation-duration: 50s;
    animation-delay: -25s;
}

@keyframes floatAtmospheric {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translate(50px, -30px) scale(1.2) rotate(90deg); 
    }
    50% { 
        transform: translate(-30px, 40px) scale(0.8) rotate(180deg); 
    }
    75% { 
        transform: translate(-50px, -40px) scale(1.1) rotate(270deg); 
    }
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: clamp(2.4rem, 3.8vw, 3.6rem);
    position: relative;
    z-index: 10;
}

.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.journey-title .title-accent {
    color: #FFD700;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

/* Journey Progress Bar - Premium Design */
.journey-progress {
    position: relative;
    margin-bottom: 0.08rem;
    z-index: 10;
}

/* Desktop: Progress-Breite an Formular angleichen */
@media (min-width: 1025px) {
    .enterprise-form {
        padding: clamp(2.6rem, 3vw, 3rem) clamp(1rem, 2.4vw, 1.8rem);
        border-radius: 36px;
    }

    .form-step {
        max-width: 1180px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .step-content {
        padding: clamp(2.4rem, 3.2vw, 3rem) clamp(1.2rem, 2.4vw, 2rem);
    }

    .premium-welcome {
        padding: clamp(3.4rem, 4vw, 3.9rem) clamp(1.4rem, 2.5vw, 2.2rem) clamp(3rem, 4vw, 3.4rem);
    }

    .premium-features {
        max-width: 1180px;
        width: 100%;
        padding: 0 clamp(1rem, 2vw, 1.8rem);
    }

    .premium-welcome-text {
        padding: clamp(1.6rem, 2.4vw, 2rem) clamp(1.2rem, 2vw, 1.8rem);
    }

    .trust-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1rem, 1.8vw, 1.6rem);
        align-items: stretch;
        margin: 0 clamp(-1.2rem, -2.1vw, -1.7rem);
    }

    .trust-point {
        height: 100%;
        padding: clamp(1.35rem, 2vw, 1.85rem);
        border-radius: 22px;
        background: linear-gradient(150deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 226, 0.68) 55%, rgba(255, 215, 0, 0.18) 100%);
        box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.08),
            0 8px 22px rgba(97, 0, 0, 0.12);
        border: 1px solid rgba(255, 215, 0, 0.28);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(1rem, 1.6vw, 1.4rem);
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .trust-point::after {
        content: '';
        position: absolute;
        inset: 8px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%);
        pointer-events: none;
    }

    .trust-icon {
        margin: 0;
        width: 50px;
        height: 50px;
        box-shadow: 0 14px 30px rgba(255, 215, 0, 0.22);
    }

    .trust-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-content {
        text-align: left;
    }

    .trust-content h3 {
        font-size: clamp(1.2rem, 1.8vw, 1.4rem);
        letter-spacing: -0.012em;
        margin-bottom: 0.45rem;
        color: #610000;
    }

    .trust-content p {
        font-size: clamp(1rem, 1.6vw, 1.1rem);
        line-height: 1.55;
        color: rgba(42, 8, 8, 0.7);
    }

    .premium-features .trust-points {
        display: none;
    }

    .journey-progress {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.journey-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.08) 0%, 
        rgba(255, 215, 0, 0.15) 25%,
        rgba(255, 237, 78, 0.12) 50%,
        rgba(255, 215, 0, 0.15) 75%,
        rgba(255, 215, 0, 0.08) 100%);
    border-radius: 8px;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 
        inset 0 1px 2px rgba(255, 215, 0, 0.1),
        0 2px 8px rgba(255, 215, 0, 0.05);
    animation: shimmerBaseLine 3s ease-in-out infinite;
}

@keyframes shimmerBaseLine {
    0%, 100% { 
        opacity: 0.6;
        box-shadow: 
            inset 0 1px 2px rgba(255, 215, 0, 0.1),
            0 2px 8px rgba(255, 215, 0, 0.05);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 
            inset 0 1px 3px rgba(255, 215, 0, 0.15),
            0 3px 12px rgba(255, 215, 0, 0.08);
    }
}

.journey-line::after {
    content: '';
    position: absolute;
    top: -1px;
    /* Startpunkt: Desktop 0, mobil via --progress-left gesetzt */
    left: var(--progress-left, 0);
    height: calc(100% + 2px);
    background: linear-gradient(90deg, 
        #FFD700 0%, 
        #FFED4E 15%,
        #FFF8DC 25%,
        #FFED4E 35%,
        #FFD700 50%,
        #FFED4E 65%,
        #FFF8DC 75%,
        #FFED4E 85%,
        #FFD700 100%);
    border-radius: 8px;
    /* Desktop: var(--progress); Mobile: var(--progress-width) */
    width: var(--progress-width, var(--progress, 0%));
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.8);
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { 
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4),
            0 0 60px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 215, 0, 0.8);
    }
    100% { 
        box-shadow: 
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 75px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(255, 215, 0, 1);
    }
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    /* Fix: Progress darf umbrechen, verhindert horizontales Scrollen */
    flex-wrap: wrap;
    margin: 0;
    padding: 0 0 0.32rem 0;
    gap: 0.4rem 0.32rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Fix: Items dürfen schrumpfen, damit nichts nach rechts rausdrückt */
    min-width: 0;
}

.journey-step:hover:not(.active):not(.completed) .step-dot {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 237, 78, 0.12) 30%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.journey-step:hover:not(.active):not(.completed) .step-dot::before {
    opacity: 0.6;
}

.journey-step:hover .step-label {
    color: rgba(255, 215, 0, 0.8);
    transform: scale(1.02);
}

.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 215, 0, 0.08) 30%,
        rgba(255, 255, 255, 0.06) 70%,
        rgba(255, 215, 0, 0.04) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    backdrop-filter: blur(8px);
}

.step-dot::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(255, 215, 0, 0.1) 25%,
        transparent 50%,
        rgba(255, 215, 0, 0.1) 75%,
        transparent 100%);
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.journey-step.active .step-dot {
    background: linear-gradient(135deg, 
        #FFD700 0%, 
        #FFED4E 25%,
        #FFF8DC 50%,
        #FFED4E 75%,
        #FFD700 100%);
    border: 3px solid #FFD700;
    transform: scale(1.3);
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(218, 165, 32, 0.8);
    animation: activeStepClean 3s ease-in-out infinite;
}

.journey-step.active .step-dot::before {
    opacity: 1;
    animation: rotateBorder 6s linear infinite;
}

@keyframes activeStepClean {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(255, 215, 0, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(218, 165, 32, 0.8);
        border-color: #FFD700;
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(255, 215, 0, 0.4),
            0 3px 12px rgba(0, 0, 0, 0.25),
            inset 0 2px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 0 rgba(218, 165, 32, 1);
        border-color: #FFED4E;
    }
}

.journey-step.completed .step-dot {
    background: linear-gradient(135deg, 
        #DAA520 0%, 
        #B8860B 30%,
        #FFD700 50%,
        #B8860B 70%,
        #DAA520 100%);
    border: 2px solid #DAA520;
    transform: scale(1.2);
    box-shadow: 
        0 3px 15px rgba(218, 165, 32, 0.25),
        0 1px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(184, 134, 11, 0.8);
    animation: completedStepClean 4s ease-in-out infinite;
}

@keyframes completedStepClean {
    0%, 100% {
        opacity: 0.95;
        box-shadow: 
            0 3px 15px rgba(218, 165, 32, 0.25),
            0 1px 6px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(184, 134, 11, 0.8);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 4px 20px rgba(218, 165, 32, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(184, 134, 11, 1);
    }
}

.journey-step.completed .step-dot::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 0 4px rgba(255, 215, 0, 0.5);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    transition: all 0.3s ease;
    /* Fix: Labels dürfen umbrechen, kein erzwungenes nowrap */
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.journey-step.active .step-label,
.journey-step.completed .step-label {
    color: #FFD700;
    font-weight: 700;
    transform: scale(1.05);
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.3),
        0 0 6px rgba(255, 215, 0, 0.4);
}

/* Enterprise Form - Main Container */
.enterprise-form {
    position: relative;
    z-index: 10;
    background: transparent;
    margin-top: 0.4rem;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: none;
    overflow: visible;
}

/* Einheitliches Box-Sizing nur innerhalb des Formularbereichs */
.enterprise-form,
.enterprise-form * {
    box-sizing: border-box;
}

/* Form Steps - Individual Step Styling */
.form-step {
    display: none;
    background: transparent;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Allow tooltips and interactive hit-testing to extend in Step 5 */
.form-step[data-step="5"] {
    overflow: visible;
}

.form-step.active {
    display: block;
}

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

/* Step Content */
.step-content {
    padding: clamp(0.04rem, 0.35vw, 0.12rem) clamp(0.74rem, 2.1vw, 1.08rem) clamp(1.42rem, 2.9vw, 1.82rem);
    position: relative;
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: clamp(1.6rem, 2.6vw, 2.4rem);
}

.step-title {
    font-family: var(--font-display);
    font-size: clamp(1.48rem, 5.2vw, 1.95rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.02rem;
}

.step-title .title-accent {
    background: linear-gradient(135deg, #ffd700 0%, #f7b648 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.35));
}

.step-subtitle {
    font-size: 0.94rem;
    color: rgba(255, 243, 224, 0.82);
    line-height: 1.65;
    max-width: 600px;
    margin: clamp(0.32rem, 1.2vw, 0.55rem) auto clamp(1.85rem, 3.4vw, 2.7rem);
    font-weight: 600;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* Welcome Step - Special Premium Design */
.premium-welcome {
    position: relative;
    text-align: center;
    padding: 4rem 3rem 3.5rem;
    background: transparent;
    color: #2a0808;
    border-radius: 0;
    overflow: hidden;
}


.welcome-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}


.welcome-content {
    position: relative;
    z-index: 10;
}

.welcome-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    text-shadow:
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 2px 12px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(255, 215, 0, 0.18);
}


.welcome-hero-title .hero-word {
    color: inherit;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
}

.hero-word::after {
    content: '';
    position: absolute;
    inset: -6px;
    opacity: 0.65;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.22), transparent 70%);
    filter: blur(10px);
    transition: filter 0.6s ease, opacity 0.6s ease;
}

/* Verhindere Umbruch der letzten zwei Wörter im Welcome-Heading */
.welcome-hero-title .nowrap {
    white-space: nowrap;
}

/* Helper to retrigger animations when returning to step 1 */
.anim-restart.hero-word {
    animation: none;
    /* force restart */
    animation: wordReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-word.highlight-gold {
    color: transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.65) 25%, #ffd700 50%, rgba(255, 255, 255, 0.7) 75%, #ffed4e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow:
        0 0 18px rgba(255, 215, 0, 0.45),
        0 10px 30px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.4));
}

.mystery-accent {
    color: var(--color-secondary);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    position: relative;
    text-shadow:
        0 0 22px rgba(0, 0, 0, 0.48),
        0 6px 20px rgba(0, 0, 0, 0.55);
}

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

@keyframes subtitleReveal {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

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

.value-subheadline {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin-top: 1.5rem;
    margin-bottom: 3.6rem;
    font-weight: 600;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-shadow:
        0 6px 18px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(23, 9, 9, 0.25);
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.anim-restart.welcome-subtitle {
    animation: none;
    animation: subtitleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

/* Premium Welcome Text Section - Conversion Optimized */
.premium-features {
    margin: 0 auto 4rem;
    max-width: 800px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.anim-restart.premium-features {
    animation: none;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.premium-welcome-text {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}


/* Premium headline styling */
.welcome-value-proposition {
    position: relative;
    z-index: 1;
}

.value-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #610000;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.value-headline .highlight-gold {
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

.value-subheadline {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: #333333;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Trust indicators as flowing text */
.trust-points {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    flex: 1;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFromBottom 0.6s ease forwards;
}

.trust-point:nth-child(1) { animation-delay: 1s; }
.trust-point:nth-child(2) { animation-delay: 1.2s; }
.trust-point:nth-child(3) { animation-delay: 1.4s; }

.trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    margin: 0 auto 0.5rem auto;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    color: #610000;
}

.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a0808;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .enterprise-form {
        padding: clamp(2rem, 4.2vw, 2.5rem) clamp(0.35rem, 1.2vw, 0.65rem);
    }

    .form-step {
        max-width: none;
        width: 100%;
    }

    .step-content {
        padding: clamp(2rem, 4.6vw, 2.4rem) clamp(0.3rem, 1.4vw, 0.7rem);
    }

    .premium-welcome {
        padding: clamp(2.8rem, 5.6vw, 3.3rem) clamp(0.65rem, 2.2vw, 1.2rem) clamp(2.4rem, 4.6vw, 2.8rem);
    }

    .premium-features {
        max-width: none;
        width: 100%;
        padding: 0 clamp(0.2rem, 1.2vw, 0.6rem);
    }

    .premium-welcome-text {
        padding: clamp(1.1rem, 3vw, 1.4rem) clamp(0.45rem, 1.6vw, 0.85rem);
    }

    .trust-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(0.6rem, 1.6vw, 1rem);
        align-items: stretch;
        margin: 0 clamp(-0.6rem, -1.6vw, -1rem);
    }

    .trust-point {
        position: relative;
        height: 100%;
        padding: clamp(1.15rem, 3vw, 1.55rem);
        border-radius: 18px;
        background: linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 226, 0.78) 52%, rgba(255, 215, 0, 0.18) 100%);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.08),
            0 4px 16px rgba(97, 0, 0, 0.12);
        border: 1px solid rgba(255, 215, 0, 0.28);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: clamp(0.85rem, 2.4vw, 1.15rem);
        text-align: left;
        overflow: hidden;
    }

    .trust-point::after {
        content: '';
        position: absolute;
        inset: 5px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
        pointer-events: none;
    }

    .trust-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    }

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

    .trust-content {
        text-align: left;
    }

    .trust-content h3 {
        font-size: clamp(1rem, 2.6vw, 1.1rem);
        letter-spacing: -0.01em;
        color: #610000;
        margin-bottom: 0.25rem;
    }

    .trust-content p {
        font-size: clamp(0.9rem, 2.4vw, 0.975rem);
        line-height: 1.45;
        color: rgba(42, 8, 8, 0.7);
    }
}

/* Urgency/Scarcity Element */
.urgency-banner {
    background: linear-gradient(135deg, #fff5e6 0%, #fffaf0 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1); }
    50% { box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2); }
}

.urgency-icon {
    width: 24px;
    height: 24px;
    color: #FFA500;
    animation: spin 3s linear infinite;
}

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

.urgency-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #610000;
}

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

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

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

/* Remove old feature card styles */
.feature-card {
    display: none;
}

/* Premium CTA Button */
.welcome-cta {
    position: relative;
    z-index: 10;
    margin-top: 2.1rem;
}


.btn-mystery-start {
    position: relative;
    background: linear-gradient(124deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 243, 224, 0.25) 22%, rgba(255, 234, 179, 0.4) 48%, rgba(255, 215, 0, 0.75) 100%);
    color: var(--color-secondary);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 1.35rem 3.6rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 52px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.35),
        0 0 36px rgba(255, 215, 0, 0.38);
    overflow: hidden;
    letter-spacing: 0.55px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-mystery-start::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.85) 0%, rgba(36, 8, 8, 0.92) 55%, rgba(25, 5, 5, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.btn-mystery-start::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -40%;
    width: 60%;
    height: 140%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 247, 223, 0.3) 45%, rgba(255, 247, 223, 0.65) 50%, rgba(255, 247, 223, 0.2) 55%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-50%) skewX(-18deg);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: buttonShine 4.2s ease-in-out 1.4s infinite;
}

.btn-mystery-start:hover {
    transform: translateY(-4px) scale(1.035);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.45),
        0 0 46px rgba(255, 215, 0, 0.48);
}

.btn-mystery-start:active {
    transform: translateY(-1px) scale(1.01);
    transition-duration: 0.1s;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 4;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-mystery-start:hover .btn-icon svg {
    transform: translateX(3px);
}

.btn-mystery-start .btn-text {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-mystery-start .btn-glow {
    position: absolute;
    inset: -40%;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0) 65%);
    opacity: 0.32;
    z-index: 2;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    animation: glowPulse 3.6s ease-in-out infinite;
}

.btn-mystery-start:hover::after,
.btn-mystery-start:hover .btn-glow {
    opacity: 1;
}

.btn-mystery-start:hover::before {
    opacity: 0.8;
}

.btn-mystery-start:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.6),
        0 0 0 6px rgba(97, 0, 0, 0.55);
}

/* Team Size Selector - Step 2 */
.team-size-selector {
    margin-bottom: 3rem;
}

.team-size-selector fieldset.size-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
    margin-bottom: 2rem;
    border: 0;
    padding: 0;
}

@media (max-width: 520px) {
    .team-size-selector fieldset.size-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

.team-size-selector .size-card {
    position: relative;
    display: flex;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-size-selector .size-card input[type="radio"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.team-size-selector .size-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: clamp(1.5rem, 2.5vw, 2.1rem) clamp(1.25rem, 2vw, 1.75rem);
    background: linear-gradient(145deg, #f8f9fb 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: inherit;
    text-align: center;
    transition: inherit;
    position: relative;
    overflow: hidden;
}

.team-size-selector .size-card .card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #610000 0%, #ffd700 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(97, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.team-size-selector .size-card .card-icon svg {
    width: 26px;
    height: 26px;
}

.team-size-selector .size-card .card-content h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.3rem);
    font-weight: 700;
    color: #610000;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.team-size-selector .size-card .card-content p {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.45;
    color: #5c5f66;
    margin: 0;
    max-width: 18ch;
}

.team-size-selector .size-card .card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #610000;
    background: rgba(97, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.team-size-selector .size-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.team-size-selector .size-card:hover .card-content {
    border-color: rgba(255, 215, 0, 0.45);
}

.team-size-selector .size-card:hover .card-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(255, 215, 0, 0.24);
}

.team-size-selector .size-card input:checked + .card-content {
    background: linear-gradient(145deg, #fffdf8 0%, #ffffff 100%);
    border-color: rgba(255, 215, 0, 0.65);
    box-shadow: 0 22px 46px rgba(255, 215, 0, 0.18);
}

.team-size-selector .size-card input:checked + .card-content .card-icon {
    background: linear-gradient(135deg, #ffd700 0%, #be8b0c 100%);
    color: #610000;
    transform: scale(1.12);
    box-shadow: 0 14px 32px rgba(255, 215, 0, 0.28);
}

.team-size-selector .size-card input:checked + .card-content .card-badge {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

@media (max-width: 1024px) {
    .team-size-selector .size-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(14px, 2vw, 20px);
    }
}

@media (max-width: 820px) {
    .team-size-selector .size-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 3vw, 16px);
    }

    .team-size-selector .size-card .card-content {
        padding: clamp(1.35rem, 4vw, 1.75rem) clamp(1rem, 3.2vw, 1.5rem);
        gap: clamp(0.55rem, 2vw, 0.7rem);
    }

    .team-size-selector .size-card .card-icon {
        width: 52px;
        height: 52px;
    }

    .team-size-selector .size-card .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .team-size-selector .size-card .card-content h3 {
        font-size: clamp(1.05rem, 2.8vw, 1.2rem);
    }

    .team-size-selector .size-card .card-content p {
        font-size: clamp(0.9rem, 2.4vw, 1rem);
    }
}

@media (max-width: 600px) {
    .team-size-selector .size-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(10px, 3.5vw, 14px);
    }

    .team-size-selector .size-card {
        min-height: clamp(140px, 46vw, 180px);
    }

    .team-size-selector .size-card .card-content {
        padding: clamp(1.2rem, 4.5vw, 1.5rem) clamp(0.9rem, 4vw, 1.2rem);
    }

    .team-size-selector .size-card .card-icon {
        width: 48px;
        height: 48px;
    }

    .team-size-selector .size-card .card-icon svg {
        width: 22px;
        height: 22px;
    }

    .team-size-selector .size-card .card-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-size-selector .size-card,
    .team-size-selector .size-card .card-icon {
        transition: none;
    }
}

/* Custom Number Input */
.custom-number-input {
    background: rgba(18, 7, 7, 0.65);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.custom-number-input label {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.number-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 1.75rem;
}

.number-decrease,
.number-increase {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 215, 0, 0.55);
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 22px rgba(255, 215, 0, 0.16);
}

.number-decrease:hover,
.number-increase:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.55) 100%);
    color: #1a0505;
    transform: scale(1.1);
}

.number-decrease:active,
.number-increase:active {
    transform: scale(0.95);
}

#exactNumber {
    width: 120px;
    height: 48px;
    border: 1px solid rgba(255, 215, 0, 0.55);
    border-radius: 12px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(10, 4, 4, 0.75);
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.45);
}

#exactNumber::-webkit-inner-spin-button,
#exactNumber::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#exactNumber {
    -moz-appearance: textfield;
}

#exactNumber::placeholder {
    color: rgba(255, 215, 0, 0.65);
}

#exactNumber:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.22);
}

.custom-number-input .input-hint {
    color: rgba(255, 243, 224, 0.8);
    font-size: 0.95rem;
}

/* Group Info Section - Step 3 */
.group-info {
    margin-bottom: 3rem;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.5vw, 16px);
    align-items: stretch;
    margin-bottom: 2rem;
    border: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .occasion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .occasion-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.occasion-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.occasion-card input[type="radio"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.occasion-content {
    height: 100%;
    min-height: clamp(120px, 24vw, 160px);
    padding: 16px 12px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    position: relative;
}

.occasion-card:hover .occasion-content {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(97, 0, 0, 0.1);
}

.occasion-card:has(input:checked) .occasion-content,
.occasion-card input:checked + .occasion-content {
    background: linear-gradient(135deg, #fffef8, #ffffff);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

.occasion-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #610000 0%, #ffd700 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.occasion-card input:checked + .occasion-content .occasion-icon {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #610000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transform: scale(1.08);
}

.occasion-content span {
    font-weight: 600;
    color: #610000;
    transition: color 0.3s ease;
}

.occasion-card input:checked + .occasion-content span {
    color: #610000;
    font-weight: 700;
}

/* Detail Sections */
.group-detail-section {
    background: rgba(18, 8, 8, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow:
        inset 0 0 0 1px rgba(255, 215, 0, 0.05),
        0 18px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    border-radius: 16px;
    margin: 1.25rem 0 0;
    padding: 1rem;
    animation: slideInUp 0.4s ease forwards;
    display: block;
}

@media (min-width: 768px) {
    .group-detail-section { margin: 1.5rem 0 0; padding: 1.25rem 1.5rem; }
}

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

.detail-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.gender-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gender-card {
    position: relative;
    cursor: pointer;
}

.gender-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gender-content {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(22, 8, 8, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 1.6rem 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 86px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 245, 230, 0.85);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 14px 28px rgba(0, 0, 0, 0.35);
}

.gender-card:hover .gender-content {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 22px 38px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 215, 0, 0.55);
}

.gender-card input:checked + .gender-content {
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.32) 0%, rgba(250, 215, 140, 0.22) 45%, rgba(34, 12, 12, 0.86) 100%);
    border-color: rgba(255, 215, 0, 0.75);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 26px 42px rgba(0, 0, 0, 0.5);
}

.gender-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 215, 0, 0.9);
}

/* Kinder Buttons */
.kinder-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.kinder-button,
.kinder-btn {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.84) 0%, rgba(18, 8, 8, 0.92) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 14px;
    padding: 1rem 1.75rem;
    font-weight: 600;
    color: rgba(255, 245, 230, 0.88);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 14px 28px rgba(0, 0, 0, 0.32);
}

.kinder-button:hover,
.kinder-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 22px 36px rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 215, 0, 0.48);
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.22) 0%, rgba(34, 14, 14, 0.9) 85%);
    color: #ffffff;
}

.kinder-button.selected,
.kinder-btn.selected {
    background: linear-gradient(150deg, rgba(255, 225, 120, 0.36) 0%, rgba(255, 215, 0, 0.28) 32%, rgba(34, 12, 12, 0.92) 100%);
    border-color: rgba(255, 215, 0, 0.72);
    color: #ffffff;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 26px 44px rgba(0, 0, 0, 0.5);
}

.kinder-alter-section {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(16, 6, 6, 0.9) 100%);
    border-radius: 18px;
    padding: 2rem;
    margin-top: 2rem;
    border: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 36px rgba(0, 0, 0, 0.35);
}

/* Kinder Altersangaben – Premium Styling */
.alter-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f8f4ea;
    text-align: center;
    margin-bottom: 1.25rem;
}

.alter-input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.alter-input-container {
    background: linear-gradient(150deg, rgba(40, 18, 18, 0.78) 0%, rgba(28, 12, 12, 0.88) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 16px 28px rgba(0, 0, 0, 0.32);
}

.alter-label {
    display: block;
    font-weight: 700;
    color: rgba(255, 245, 230, 0.85);
    margin-bottom: 0.5rem;
}

.alter-input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    padding: 0 0.75rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    outline: none;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.alter-input::-webkit-inner-spin-button,
.alter-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.alter-input:focus {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.alter-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

@media (max-width: 480px) {
    /* Fallback: horizontales Scrollen global unterbinden */
    html, body {
        overflow-x: hidden;
    }
    .kinder-button,
    .kinder-btn {
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }
    .alter-input-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* Budget Section - Step 4 - Premium Card Design */
.budget-section {
    margin-bottom: 3rem;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.budget-card {
    position: relative;
    cursor: pointer;
}

.budget-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.budget-card-content {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.budget-card:hover .budget-card-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(97, 0, 0, 0.1);
}

.budget-card input:checked + .budget-card-content {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border-color: rgba(255, 215, 0, 0.8);
    border-width: 2px;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.12);
}

.budget-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.budget-price {
    font-size: 2rem;
    font-weight: 800;
    color: #610000;
    line-height: 1;
    transition: all 0.3s ease;
}

.budget-card input:checked + .budget-card-content .budget-price {
    color: #610000;
    transform: scale(1.05);
}

.budget-currency {
    font-size: 2rem;
    font-weight: 800;
    color: #610000;
    line-height: 1;
}

.budget-range-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.budget-label {
    font-size: 1rem;
    font-weight: 700;
    color: #2a0808;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.budget-card input:checked + .budget-card-content .budget-label {
    color: #610000;
}

.budget-examples {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Premium Budget Cards */
.budget-card.recommended .budget-card-content {
    position: relative;
    overflow: visible;
}

.budget-card.recommended .budget-card-content::before {
    content: 'EMPFOHLEN';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #610000;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Custom Budget Input */
.custom-budget-section {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(16, 6, 6, 0.9) 100%);
    border-radius: 18px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 36px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.custom-budget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.custom-budget-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.custom-budget-input-wrapper input {
    width: 150px;
    height: 48px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 12px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.custom-budget-input-wrapper input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.custom-budget-input-wrapper .currency-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.budget-slider-wrapper {
    position: relative;
    margin: 2rem 0;
    padding: 0 1rem;
}

.budget-slider {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.25);
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(255, 215, 0, 0.3),
        inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow:
        0 6px 18px rgba(255, 215, 0, 0.45),
        inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.budget-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(255, 215, 0, 0.3),
        inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.budget-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 245, 230, 0.8);
    font-weight: 600;
}

/* Budget Info Box */
.budget-info-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.budget-info-box svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-bottom: 0.5rem;
}

.budget-info-text {
    font-size: 0.875rem;
    color: white;
    line-height: 1.5;
}

/* Location Section - Step 5 - Premium Design */
.location-section {
    margin-bottom: 3rem;
}

/* Location Method Cards */
.location-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-method-card {
    position: relative;
    cursor: pointer;
}

.location-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.location-method-content {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.location-method-card:hover .location-method-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(97, 0, 0, 0.1);
}

.location-method-card input:checked + .location-method-content {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border-color: rgba(255, 215, 0, 0.8);
    border-width: 2px;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.12);
}

.location-method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #610000 0%, #ffd700 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(97, 0, 0, 0.15);
}

.location-method-icon svg {
    width: 32px;
    height: 32px;
}

.location-method-card input:checked + .location-method-content .location-method-icon {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #610000;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.location-method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2a0808;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(20ch, 90%, 26ch);
    transition: color 0.3s ease;
}

.location-method-card input:checked + .location-method-content .location-method-title {
    color: #610000;
}

.location-method-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 auto;
    max-width: clamp(24ch, 85%, 30ch);
    white-space: normal;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1090px) {
    .location-method-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(16px, 2.5vw, 22px);
        align-items: stretch;
    }

    .location-method-content {
        padding: clamp(1.45rem, 2.5vw, 1.7rem) clamp(0.85rem, 2vw, 1.1rem);
    }

    .location-method-icon {
        width: clamp(52px, 7vw, 60px);
        height: clamp(52px, 7vw, 60px);
    }

    .location-method-icon svg {
        width: clamp(26px, 4vw, 30px);
        height: clamp(26px, 4vw, 30px);
    }

    .location-method-title {
        font-size: clamp(1.15rem, 2.4vw, 1.25rem);
    }

    .location-method-description {
        font-size: clamp(0.85rem, 2vw, 0.9rem);
        font-weight: 600;
    }
}

/* Location Input Section */
.location-input-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: none;
}

.location-input-section.active {
    display: block;
    animation: slideInUp 0.4s ease forwards;
}

.location-input-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.location-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(22, 8, 8, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 14px 28px rgba(0, 0, 0, 0.35);
}

.location-input-wrapper:focus-within {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 18px 32px rgba(0, 0, 0, 0.45);
}

.location-input-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 215, 0, 0.9);
    flex-shrink: 0;
}

.location-input-field {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    outline: none;
}

.location-input-field::placeholder {
    color: rgba(255, 245, 230, 0.6);
}

/* Popular Cities */
.popular-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.city-suggestion {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.84) 0%, rgba(18, 8, 8, 0.92) 100%);
    color: rgba(255, 245, 230, 0.88);
    padding: 0.75rem 1.25rem;
    border-radius: 22px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-family: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 14px 28px rgba(0, 0, 0, 0.32);
}

.city-suggestion:hover,
.city-suggestion:focus-visible {
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.22) 0%, rgba(34, 14, 14, 0.9) 85%);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.48);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 22px 36px rgba(0, 0, 0, 0.42);
}

.city-suggestion:focus-visible {
    outline: 2px solid rgba(255, 215, 0, 0.6);
    outline-offset: 2px;
}

/* persistente Auswahl-Darstellung */
.city-suggestion.selected {
    background: linear-gradient(150deg, rgba(255, 225, 120, 0.36) 0%, rgba(255, 215, 0, 0.28) 32%, rgba(34, 12, 12, 0.92) 100%);
    color: #ffffff;
    border-color: rgba(255, 215, 0, 0.72);
    transform: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 26px 44px rgba(0, 0, 0, 0.5);
}

/* Radius Selection */
.radius-selection-section {
    margin-top: 2rem;
}

.radius-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.radius-option {
    position: relative;
    cursor: pointer;
}

.radius-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radius-card-content {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(22, 8, 8, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 1.6rem 1.1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: rgba(255, 245, 230, 0.85);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 14px 28px rgba(0, 0, 0, 0.35);
}

.radius-option:hover .radius-card-content {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.55);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 22px 38px rgba(0, 0, 0, 0.45);
}

.radius-option input:checked + .radius-card-content {
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.32) 0%, rgba(250, 215, 140, 0.22) 45%, rgba(34, 12, 12, 0.86) 100%);
    border-color: rgba(255, 215, 0, 0.75);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 26px 42px rgba(0, 0, 0, 0.5);
}

.radius-distance {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.radius-option input:checked + .radius-card-content .radius-distance {
    color: #ffffff;
    transform: scale(1.05);
}

.radius-label {
    font-size: 0.875rem;
    color: rgba(255, 245, 230, 0.7);
    font-weight: 600;
}

/* Special Radius Option */
.radius-option.unlimited .radius-card-content {
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.15) 0%, rgba(34, 14, 14, 0.85) 70%);
    border-color: rgba(255, 215, 0, 0.45);
}

.radius-option.unlimited input:checked + .radius-card-content {
    background: linear-gradient(150deg, rgba(255, 235, 120, 0.4) 0%, rgba(255, 215, 0, 0.35) 30%, rgba(34, 12, 12, 0.9) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    color: #ffffff;
    font-weight: 800;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 26px 44px rgba(0, 0, 0, 0.55);
}

/* Location Info Box */
.location-info-box {
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.75) 0%, rgba(16, 6, 6, 0.85) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 18px 32px rgba(0, 0, 0, 0.35);
}

.location-info-box svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 0.5rem;
}

.location-info-text {
    font-size: 0.875rem;
    color: rgba(255, 245, 230, 0.88);
    line-height: 1.5;
}

/* Mobile: Eingaben direkt unter der gewhlten Karte zeigen */
@media (max-width: 768px) {
  .location-method-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* 1 Karte pro Reihe */
    gap: 12px !important;
  }

  /* Inline-Blöcke, die unter die Karte geschoben werden */
  .location-section .is-inline {
    display: block !important;
    margin-top: 12px;
    margin-bottom: 6px;
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(16, 6, 6, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 14px;
    padding: 14px;
  }

  /* Radius-Optionen schön zweispaltig auf Mobile */
  .radius-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .city-suggestion {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: normal;
  }
}

@media (min-width: 768px) and (max-width: 1090px) {
    .popular-cities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(10px, 2vw, 16px);
    }

    .city-suggestion {
        min-height: clamp(46px, 6vw, 54px);
        padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(0.9rem, 2.5vw, 1.2rem);
        white-space: nowrap;
    }
}

@keyframes locationSlide{
  from{ opacity:0; transform: translateY(-4px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Preferences Section - Step 6 */
.premium-preferences-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preference-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}

@media (min-width: 521px) {
    .preference-card {
        min-height: 300px;
    }
}

.preference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(97, 0, 0, 0.1);
}

.preference-card.excluded {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #dc2626;
    color: #dc2626;
    transform: translateY(-6px) scale(0.95);
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

/* Starkes Desaturierungs-Overlay für abgewählte Karten */
.preference-card.excluded .preference-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.85) 0%, 
        rgba(153, 27, 27, 0.9) 100%);
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

/* Graustufenfilter für Hintergrundbild */
.preference-card.excluded .preference-card-content {
    filter: grayscale(100%) contrast(0.7);
}

/* "AUSGESCHLOSSEN" Label */
.preference-card.excluded::after {
    content: '✕ AUSGESCHLOSSEN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 3;
    background: rgba(220, 38, 38, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid white;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: excludedPulse 2s ease-in-out infinite;
}

/* Puls-Animation für bessere Sichtbarkeit */
@keyframes excludedPulse {
    0%, 100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) rotate(-12deg) scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) rotate(-12deg) scale(1.05);
    }
}

/* Hover-Effekt für abgewählte Karten deaktivieren */
.preference-card.excluded:hover {
    transform: translateY(-6px) scale(0.95);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Mobile Anpassungen für excluded Label */
@media (max-width: 768px) {
    .preference-card.excluded::after {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .preference-card.excluded::after {
        content: '✕ AUSGESCHLOSSEN';
        font-size: 0.78rem;
        padding: 0.35rem 0.65rem;
        letter-spacing: 0.15px;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }
}

/* Card Content Area */
.preference-card-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    padding-top: 1.4rem;
    padding-bottom: 4rem; /* Platz für absolute positionierte Controls */
    gap: 1.2rem;
    background: white;
    border-radius: 16px 16px 0 0;
}

/* Card Bottom Action Bar */
.preference-controls {
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    height: 60px;
    padding: 0;
    margin: 0;
    background: transparent;
}

.preference-btn {
    width: calc(100% + 4px);
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 0 0 18px 18px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    margin-left: -2px;
    position: absolute;
    top: 0;
    left: 0;
}

.preference-btn:hover {
    background: rgba(139, 32, 32, 0.9);
    color: #ffffff;
}

/* Ausschließen-Button in Gold */
.preference-btn.exclude-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2c1810;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.preference-btn.exclude-btn:hover {
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
    color: #1a0f08;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.preference-card.excluded .preference-btn {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.94), rgba(153, 27, 27, 0.98));
}

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

@media (max-width: 768px) {
    .preference-card {
        width: min(100%, 320px);
        margin: 0 auto;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
    }

    .preference-card-content {
        min-height: unset;
        padding: clamp(0.85rem, 2.8vw, 1.1rem);
        padding-top: clamp(0.65rem, 2.2vw, 0.9rem);
        gap: clamp(0.55rem, 2.4vw, 0.85rem);
    }

    .preference-card .category-title {
        font-size: clamp(0.95rem, 3.1vw, 1.05rem);
    }

    .preference-card .category-description {
        font-size: clamp(0.78rem, 2.6vw, 0.88rem);
        line-height: 1.38;
        max-width: 18ch;
    }

    .preference-controls {
        height: clamp(44px, 12vw, 56px);
    }

    .preference-btn {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        padding: clamp(0.75rem, 2.6vw, 0.95rem) clamp(0.9rem, 3vw, 1.1rem);
    }
}

@media (min-width: 769px) {
    .premium-preferences-section {
        gap: clamp(2.2rem, 3.2vw, 3.4rem);
    }

    .preference-card {
        aspect-ratio: 1 / 1;
        min-height: clamp(280px, 24vw, 340px);
        max-height: clamp(300px, 28vw, 360px);
        width: min(100%, clamp(280px, 24vw, 320px));
    }

    .preference-card-content {
        padding: clamp(1.1rem, 1.9vw, 1.5rem);
        padding-top: clamp(0.8rem, 1.4vw, 1.1rem);
        gap: clamp(0.65rem, 1.6vw, 0.95rem);
    }

    .preference-card .category-title {
        font-size: clamp(1rem, 1.7vw, 1.25rem);
        line-height: 1.3;
    }

    .preference-card .category-description {
        font-size: clamp(0.82rem, 1.3vw, 0.98rem);
        line-height: 1.45;
        max-width: 22ch;
    }

    .preference-controls {
        height: clamp(48px, 5.5vw, 64px);
    }

    .preference-btn {
        font-size: clamp(0.9rem, 1.3vw, 1.05rem);
        padding: clamp(0.85rem, 1.6vw, 1.1rem) clamp(1rem, 2vw, 1.4rem);
    }
}

/* Action Card with Background Image */
.preference-card[data-category="action"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Action.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.preference-card[data-category="culinary"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Essen-und-trinken.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
    background-position: center 12%;
}

.preference-card[data-category="indoor"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Indoor.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.preference-card[data-category="culture"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Events.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.preference-card[data-category="creative"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Workshops.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
    background-position: center 18%;
}

.preference-card[data-category="wellness"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Wellness.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
    background-position: center 22%;
}

.preference-card[data-category="outdoor"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/outdoor-28.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.preference-card[data-category="speed"] .preference-card-content {
    background: linear-gradient(135deg, rgba(97, 0, 0, 0.45), rgba(26, 0, 0, 0.35)),
        url("https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Fahren-und-Fliegen.png") center/cover no-repeat;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.preference-card[data-category="action"] .category-title,
.preference-card[data-category="culinary"] .category-title,
.preference-card[data-category="indoor"] .category-title,
.preference-card[data-category="wellness"] .category-title,
.preference-card[data-category="outdoor"] .category-title,
.preference-card[data-category="culture"] .category-title,
.preference-card[data-category="creative"] .category-title,
.preference-card[data-category="speed"] .category-title {
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    font-size: 1.4rem;
    font-weight: 800;
}

.preference-card[data-category="action"] .preference-tooltip,
.preference-card[data-category="culinary"] .preference-tooltip,
.preference-card[data-category="indoor"] .preference-tooltip,
.preference-card[data-category="wellness"] .preference-tooltip,
.preference-card[data-category="outdoor"] .preference-tooltip,
.preference-card[data-category="culture"] .preference-tooltip,
.preference-card[data-category="creative"] .preference-tooltip,
.preference-card[data-category="speed"] .preference-tooltip {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.preference-card[data-category="action"] .preference-tooltip:hover,
.preference-card[data-category="action"] .preference-tooltip:focus-visible,
.preference-card[data-category="culinary"] .preference-tooltip:hover,
.preference-card[data-category="culinary"] .preference-tooltip:focus-visible,
.preference-card[data-category="indoor"] .preference-tooltip:hover,
.preference-card[data-category="indoor"] .preference-tooltip:focus-visible,
.preference-card[data-category="wellness"] .preference-tooltip:hover,
.preference-card[data-category="wellness"] .preference-tooltip:focus-visible,
.preference-card[data-category="outdoor"] .preference-tooltip:hover,
.preference-card[data-category="outdoor"] .preference-tooltip:focus-visible,
.preference-card[data-category="culture"] .preference-tooltip:hover,
.preference-card[data-category="culture"] .preference-tooltip:focus-visible,
.preference-card[data-category="creative"] .preference-tooltip:hover,
.preference-card[data-category="creative"] .preference-tooltip:focus-visible,
.preference-card[data-category="speed"] .preference-tooltip:hover,
.preference-card[data-category="speed"] .preference-tooltip:focus-visible {
    background: rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.preference-tooltip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(97, 0, 0, 0.1);
    color: #610000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.preference-tooltip:focus-visible {
    outline: 2px solid #610000;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(97, 0, 0, 0.2);
}

.preference-tooltip:hover,
.preference-tooltip:focus-visible {
    background: rgba(97, 0, 0, 0.2);
    color: #410000;
    transform: translateY(-1px);
}

.preference-tooltip:hover + .tooltip-content,
.preference-tooltip:focus-visible + .tooltip-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.tooltip-content {
    position: absolute;
    top: 3rem;
    right: 1rem;
    background: #333;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Icons werden nicht mehr verwendet - entfernt für cleanes Design */

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #610000;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.preference-card.excluded .category-title {
    color: white;
    text-decoration: line-through;
    opacity: 0.9;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Beschreibungstext für abgewählte Karten */
.preference-card.excluded .category-description {
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    opacity: 0.8;
}

/* Alte Button-Styles entfernt - neue Bottom-Bar Styles oben definiert */

.preferences-limit-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffd93d;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #856404;
    font-weight: 600;
    text-align: center;
    display: none;
}

.preferences-limit-warning.show {
    display: block;
    animation: warningPulse 0.5s ease forwards;
}

@keyframes warningPulse {
    0% { 
        transform: scale(0.95);
        opacity: 0;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Special Requests */
.special-requests-section {
    margin-top: 3rem;
}

.special-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #610000;
    margin-bottom: 1rem;
    text-align: center;
}

.special-requests-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.premium-textarea {
    width: 100%;
    min-height: 120px;
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.82) 0%, rgba(22, 8, 8, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    resize: vertical;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 14px 28px rgba(0, 0, 0, 0.35);
    font-family: inherit;
    line-height: 1.6;
}

.premium-textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 18px 32px rgba(0, 0, 0, 0.45);
    border-color: #610000;
    box-shadow: 0 0 0 4px rgba(97, 0, 0, 0.1);
}

.premium-textarea::placeholder {
    color: rgba(255, 245, 230, 0.6);
}

/* Final Details - Step 7 - Premium Design */
/* ===================================
   STEP 7 - FINAL DETAILS
   Premium Date & Contact Design
   =================================== */
.final-details-section {
    margin-bottom: 3rem;
}

    .form-step[data-step="7"] .final-details-section,
    .form-step[data-step="7"] .date-method-section,
    .form-step[data-step="7"] .date-input-section,
    .form-step[data-step="7"] .time-range-selector,
    .form-step[data-step="7"] .timeline-calendar-container,
    .form-step[data-step="7"] .contact-section,
    .form-step[data-step="7"] .contact-form-grid {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

/* Date Method Selection Cards */
.date-method-section {
    margin-bottom: 3rem;
}

.date-method-section .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #610000;
    text-align: center;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) and (max-width: 1090px) {
    .date-method-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(16px, 2.5vw, 22px);
        align-items: stretch;
    }

    .date-method-content {
        padding: clamp(1.45rem, 2.5vw, 1.7rem) clamp(0.85rem, 2vw, 1.1rem);
    }

    .date-method-icon {
        width: clamp(52px, 7vw, 60px);
        height: clamp(52px, 7vw, 60px);
    }

    .date-method-icon svg {
        width: clamp(26px, 4vw, 30px);
        height: clamp(26px, 4vw, 30px);
    }

    .date-method-title {
        font-size: clamp(1.15rem, 2.4vw, 1.25rem);
    }

    .date-method-description {
        font-size: clamp(0.85rem, 2vw, 0.9rem);
        font-weight: 600;
    }
}

.date-method-card {
    position: relative;
    cursor: pointer;
}

.date-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.date-method-content {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.date-method-card:hover .date-method-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(97, 0, 0, 0.1);
}

.date-method-card input:checked + .date-method-content {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border-color: rgba(255, 215, 0, 0.8);
    border-width: 2px;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.12);
}

.date-method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #610000 0%, #ffd700 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(97, 0, 0, 0.15);
}

.date-method-icon svg {
    width: 32px;
    height: 32px;
}

.date-method-card input:checked + .date-method-content .date-method-icon {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #610000;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.date-method-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #2a0808;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(20ch, 90%, 26ch);
    transition: color 0.3s ease;
}

.date-method-card input:checked + .date-method-content .date-method-title {
    color: #610000;
}

.date-method-description {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 auto;
    max-width: clamp(24ch, 85%, 30ch);
    white-space: normal;
    font-weight: 600;
}

/* ===================================
   HAMMER DATE INPUT STYLING
   Premium Von/Bis Date-Inputs
   =================================== */

/* Date Input Sections */
.date-input-section {
    background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 26px 48px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    margin: 2rem 0;
    display: none;
}

.date-input-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 215, 0, 0.26) 0%, transparent 60%),
        radial-gradient(circle at 78% 82%, rgba(255, 215, 0, 0.18) 0%, transparent 58%),
        radial-gradient(circle at 55% 55%, rgba(255, 255, 255, 0.12) 0%, transparent 72%);
    pointer-events: none;
    z-index: 1;
}

.date-input-section > * {
    position: relative;
    z-index: 2;
}

.date-input-section.active {
    display: block;
    animation: slideInUp 0.4s ease forwards;
}

/* ===================================
   TIMELINE KALENDER - HAMMER DESIGN
   Premium Dark Design mit Gold-Akzenten
   =================================== */

/* Timeline Calendar Container - Premium Dark Panel */
.timeline-calendar-container {
    padding: 2.5rem 2.25rem 2rem;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
}

.timeline-calendar-container::before {
    display: none;
}

.timeline-calendar-container > * {
    position: relative;
    z-index: 2;
}

/* Info Box Styles für Timeline */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(155deg, rgba(34, 14, 14, 0.85) 0%, rgba(18, 6, 6, 0.88) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 16px;
    margin-top: 1.75rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 20px 36px rgba(0, 0, 0, 0.45);
}

.info-box svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 215, 0, 0.92);
    stroke-width: 2;
}

.info-box__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 245, 230, 0.86);
    margin: 0;
    font-weight: 500;
}

.info-box__text strong {
    color: rgba(255, 245, 230, 0.95);
    font-weight: 700;
}

/* Timeline Header */
.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(97, 0, 0, 0.1);
}

.timeline-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-title h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.95);
    margin: 0;
}

.calendar-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(97, 0, 0, 0.3);
}

.calendar-icon svg {
    width: 18px;
    height: 18px;
}

/* Month Navigation */
.timeline-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(140deg, rgba(34, 14, 14, 0.72) 0%, rgba(18, 6, 6, 0.78) 100%);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    backdrop-filter: blur(12px);
    min-height: 50px;
    box-sizing: border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 16px 28px rgba(0, 0, 0, 0.35);
}

.timeline-nav-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(150deg, rgba(34, 14, 14, 0.9) 0%, rgba(14, 4, 4, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.35);
    color: rgba(255, 245, 230, 0.85);
}

.timeline-nav-btn:hover {
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.32) 0%, rgba(255, 215, 0, 0.12) 45%, rgba(34, 12, 12, 0.88) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    color: rgba(255, 245, 230, 0.95);
    transform: translateY(-2px) scale(1.08);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 18px 36px rgba(0, 0, 0, 0.45);
}

.timeline-nav-btn:active {
    transform: translateY(0) scale(0.96);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.timeline-nav-btn svg {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.timeline-month-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 120px;
    max-width: 150px;
    padding: 0 1rem;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.timeline-month {
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.92);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.timeline-year {
    font-size: 0.875rem;
    color: rgba(255, 245, 230, 0.6);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Timeline Scroll Container */
.timeline-scroll-container {
    position: relative;
    margin: 2rem 0;
}

.timeline-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-scroll::-webkit-scrollbar {
    display: none;
}

/* Custom Scrollbar Track */
.timeline-scroll-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 245, 230, 0.15);
    border-radius: 2px;
}

.timeline-scroll-thumb {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.65) 0%, rgba(255, 215, 0, 0.4) 80%);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

/* Timeline Day Cards */
.timeline-day {
    flex-shrink: 0;
    width: 80px;
    background: linear-gradient(160deg, rgba(28, 12, 12, 0.92) 0%, rgba(18, 6, 6, 0.96) 100%);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 16px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 16px 30px rgba(0, 0, 0, 0.35);
}

.timeline-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.timeline-day:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(255, 215, 0, 0.55);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 18px 40px rgba(0, 0, 0, 0.45);
}

.timeline-day:hover::before {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.75) 0%, rgba(255, 215, 0, 0.45) 100%);
}

/* Timeline Day States */
.timeline-day.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(150deg, rgba(26, 12, 12, 0.6) 0%, rgba(20, 8, 8, 0.65) 100%);
    border-color: rgba(255, 215, 0, 0.08);
    box-shadow: none;
}

.timeline-day.today {
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.08) 45%, rgba(28, 10, 10, 0.92) 100%);
    border-color: rgba(255, 215, 0, 0.45);
    font-weight: 700;
    color: rgba(255, 245, 230, 0.95);
}

.timeline-day.today::before {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.7) 0%, rgba(255, 215, 0, 0.45) 100%);
}

.timeline-day.selected {
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.32) 0%, rgba(255, 215, 0, 0.16) 45%, rgba(34, 12, 12, 0.92) 100%);
    border-color: rgba(255, 215, 0, 0.7);
    color: rgba(255, 245, 230, 0.98);
    transform: translateY(-8px) scale(1.06);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.5);
    animation: selectedPulse 2s ease-in-out infinite;
}

.timeline-day.selected::before {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.55) 100%);
    height: 4px;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.75);
}

@keyframes selectedPulse {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(97, 0, 0, 0.3),
            0 6px 18px rgba(97, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 18px 45px rgba(97, 0, 0, 0.4),
            0 8px 22px rgba(97, 0, 0, 0.25);
    }
}

/* Timeline Day Content */
.timeline-weekday {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 245, 230, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.timeline-day.selected .timeline-weekday {
    color: rgba(255, 245, 230, 0.9);
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.9);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timeline-day.selected .timeline-date {
    color: white;
}

.timeline-month-short {
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.timeline-day.selected .timeline-month-short {
    color: rgba(255, 245, 230, 0.85);
}

.timeline-day.weekend.selected .timeline-weekday,
.timeline-day.weekend.selected .timeline-date,
.timeline-day.weekend.selected .timeline-month-short {
    color: #FFFFFF;
}

/* Weekend Styling */
.timeline-day.weekend {
    background: linear-gradient(160deg, rgba(34, 12, 12, 0.92) 0%, rgba(18, 6, 6, 0.95) 100%);
    border-color: rgba(255, 215, 0, 0.32);
}

.timeline-day.weekend .timeline-weekday {
    color: rgba(255, 215, 0, 0.72);
}

.timeline-day.weekend.selected {
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-color: #610000;
}

/* Timeline Info */
.timeline-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    font-size: 0.875rem;
    color: #610000;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.timeline-info svg {
    width: 24px;
    height: 24px;
    color: #610000;
    flex-shrink: 0;
}

/* Scroll Navigation Arrows */
.timeline-scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 2px solid rgba(97, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-scroll-nav:hover {
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-color: #610000;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(97, 0, 0, 0.3);
}

.timeline-scroll-nav.left {
    /* Fix: Pfeil innerhalb des Viewports halten */
    left: 0;
}

.timeline-scroll-nav.right {
    /* Fix: Pfeil innerhalb des Viewports halten */
    right: 0;
}

.timeline-scroll-nav svg {
    width: 20px;
    height: 20px;
}

/* Quick Date Navigation */
.timeline-quick-nav {
    display: none;
}

.timeline-quick-btn {
    display: none;
}

.timeline-quick-btn:hover {
    background: rgba(97, 0, 0, 0.1);
    border-color: rgba(97, 0, 0, 0.2);
    transform: translateY(-1px);
}

.timeline-quick-btn.active {
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-color: #610000;
    color: white;
    box-shadow: 0 2px 8px rgba(97, 0, 0, 0.2);
}

/* Timeline Date Selection Confirmation */
.date-selection-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(97, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.date-selection-confirmation.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.confirmation-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.confirmation-content svg {
    width: 20px;
    height: 20px;
    color: #FFD700;
    flex-shrink: 0;
}

/* Timeline Animations für Performance */
.timeline-day {
    will-change: transform;
}

.timeline-scroll {
    will-change: scroll-position;
}

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

.timeline-day {
    animation: timelineEntry 0.3s ease forwards;
}

.timeline-day:nth-child(n) { animation-delay: calc(var(--i) * 0.02s); }

/* ===================================
   HAMMER ZEITBEREICH-SELECTOR
   Interaktive Timeline für Tageszeit-Auswahl
   =================================== */

/* Time Range Container */
.time-range-selector {
    background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 26px 48px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    margin: 2rem 0;
}

.time-range-selector::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 215, 0, 0.26) 0%, transparent 60%),
        radial-gradient(circle at 78% 82%, rgba(255, 215, 0, 0.18) 0%, transparent 58%),
        radial-gradient(circle at 55% 55%, rgba(255, 255, 255, 0.12) 0%, transparent 72%);
    pointer-events: none;
    z-index: 1;
}

.time-range-selector > * {
    position: relative;
    z-index: 2;
}

/* Time Range Header */
.time-range-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.time-range-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.95);
    margin-bottom: 0.5rem;
}

.time-range-subtitle {
    font-size: 1rem;
    color: rgba(255, 245, 230, 0.7);
    line-height: 1.5;
    font-weight: 600;
}

/* Time Timeline Container */
.time-timeline {
    position: relative;
    margin: 2rem 0;
    padding: 0 1.5rem;
}

/* Time Scale */
.time-scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0;
}

.time-scale-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 245, 230, 0.55);
    font-weight: 600;
}

.time-scale-mark.major {
    color: rgba(255, 245, 230, 0.85);
    font-weight: 700;
}

.time-scale-line {
    width: 2px;
    height: 12px;
    background: rgba(255, 245, 230, 0.25);
}

.time-scale-mark.major .time-scale-line {
    height: 20px;
    background: rgba(255, 215, 0, 0.45);
}

/* Time Range Track */
.time-range-track {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg,
        rgba(34, 12, 12, 0.7) 0%,
        rgba(28, 10, 10, 0.8) 100%);
    border-radius: 6px;
    margin: 1.25rem 0;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(255, 215, 0, 0.2);
    touch-action: pan-y;
}

.time-range-active {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(255, 215, 0, 0.65) 0%,
        rgba(255, 215, 0, 0.32) 45%,
        rgba(255, 215, 0, 0.7) 100%);
    border-radius: 6px;
    box-shadow:
        0 0 24px rgba(255, 215, 0, 0.65),
        0 0 48px rgba(255, 215, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: timeRangeGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

@keyframes timeRangeGlow {
    0% { 
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* Time Range Handles */
.time-range-handle {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.85) 0%, rgba(255, 215, 0, 0.4) 65%, rgba(34, 12, 12, 0.95) 100%);
    border: 3px solid rgba(255, 245, 230, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(255, 215, 0, 0.3);
    z-index: 10;
    touch-action: none;
}

.time-range-handle:hover {
    transform: translate(-50%, -50%) scale(1.18);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 215, 0, 0.45) 65%, rgba(34, 12, 12, 0.95) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 24px rgba(0, 0, 0, 0.45),
        0 6px 18px rgba(255, 215, 0, 0.35);
}

.time-range-handle:active {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 215, 0, 0.3);
}

.time-range-handle.dragging {
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.45),
        0 6px 20px rgba(255, 215, 0, 0.4);
    z-index: 20;
}

.time-range-handle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 215, 0, 0.45);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: handlePulse 2s ease-in-out infinite;
}

@keyframes handlePulse {
    0%, 100% { 
        opacity: 0; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

.time-range-handle:hover::after {
    opacity: 1;
}

/* Time Range Labels */
.time-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding: 0 0.75rem;
    gap: 0.75rem;
}

.time-range-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.time-label-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-label-value {
    background: linear-gradient(160deg, rgba(34, 12, 12, 0.92) 0%, rgba(18, 6, 6, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 0.5rem 1.15rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.95);
    min-width: 90px;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 12px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.time-label-value.active {
    background: linear-gradient(140deg, rgba(255, 215, 0, 0.72) 0%, rgba(255, 215, 0, 0.3) 45%, rgba(34, 12, 12, 0.92) 100%);
    border-color: rgba(255, 215, 0, 0.65);
    color: rgba(255, 245, 230, 0.98);
    transform: scale(1.05);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 18px 36px rgba(0, 0, 0, 0.5);
}

/* Time Presets - Removed */

/* Time Range Info */
.time-range-info,
.date-range-info,
.duration-text,
.duration-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(155deg, rgba(34, 14, 14, 0.85) 0%, rgba(18, 6, 6, 0.88) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    font-size: 0.92rem;
    color: rgba(255, 245, 230, 0.9);
    font-weight: 500;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 32px rgba(0, 0, 0, 0.4);
}

.time-range-info svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 215, 0, 0.92);
    flex-shrink: 0;
}

.time-duration-display {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(155deg, rgba(34, 14, 14, 0.85) 0%, rgba(18, 6, 6, 0.88) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 16px 28px rgba(0, 0, 0, 0.35);
}

.duration-text {
    font-size: 0.875rem;
    color: rgba(255, 245, 230, 0.75);
    margin-bottom: 0.25rem;
}

.duration-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 245, 230, 0.95);
}

/* Mobile Optimierung für Timeline Kalender und Zeitbereich */
@media (max-width: 768px) {
    .enterprise-form {
        padding: 1.5rem;
        border-radius: 24px;
    }
    /* Verhindert abgeschnittene Inhalte (z. B. Tooltips, Labels) auf Mobile */
    .form-step {
        overflow: visible;
    }
    
    /* Trust Points Mobile Anpassung */
    .trust-points {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .trust-point {
        flex-direction: row;
        text-align: left;
        max-width: 500px;
        transform: translateX(-20px);
        animation: slideInFromLeft 0.6s ease forwards;
    }
    
    .trust-content {
        text-align: left;
    }
    
    .trust-icon {
        margin: 0;
    }
    
    /* Date Input Section Mobile Anpassung */
    .date-input-section {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin: 1rem 0;
        background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
        border: 1px solid rgba(255, 215, 0, 0.32);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            0 26px 48px rgba(0, 0, 0, 0.55);
        overflow: hidden;
    }
    
    .timeline-calendar-container {
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0;
        margin-bottom: 1.5rem;
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timeline-title {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .timeline-title h3 {
        font-size: 1.4rem;
        text-align: center;
        margin: 0;
        padding: 0;
        line-height: 1.2;
    }
    
    .timeline-nav {
        width: 100%;
        max-width: 280px;
        padding: 0.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .timeline-month-display {
        min-width: 100px;
        max-width: 140px;
        padding: 0 0.75rem;
        font-size: 0.95rem;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .timeline-scroll {
        padding: 0.75rem 0.5rem 1.5rem 0.5rem;
        gap: 0.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timeline-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .timeline-day {
        min-width: 65px;
        width: 65px;
        padding: 0.75rem 0.3rem;
    }
    
    .timeline-date {
        font-size: 1.125rem;
    }
    
    .timeline-weekday,
    .timeline-month-short {
        font-size: 0.625rem;
    }
    
    .timeline-info {
        margin: 1rem 0;
        padding: 1rem;
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* Zeit-Skala nutzt verfügbaren Platz im Container besser */
    .time-timeline {
        padding: 0; /* verhindert seitlichen Überlauf */
        box-sizing: border-box;
    }

    .time-scale {
        padding: 0;
        margin: 0; /* negative Margins entfernen */
    }

    .time-range-track {
        margin: 1rem 0;
    }

    .time-range-labels {
        padding: 0;
    }
}

/* Extra kleine Screens - Handy Optimierung */
@media (max-width: 480px) {
    /* Date Input Section für kleine Screens */
    .date-input-section {
        padding: 1rem 0.75rem;
        border-radius: 12px;
        margin: 0.75rem 0;
        background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
        border: 1px solid rgba(255, 215, 0, 0.32);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            0 26px 48px rgba(0, 0, 0, 0.55);
        overflow: hidden;
    }
    
    .timeline-calendar-container {
        margin: 0;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow: visible;
        background: transparent;
        border: none;
    }
    
    .timeline-day {
        min-width: 60px;
        width: 60px;
        padding: 0.6rem 0.2rem;
    }
    
    .timeline-date {
        font-size: 1rem;
    }
    
    .timeline-weekday,
    .timeline-month-short {
        font-size: 0.55rem;
    }
    
    .timeline-scroll {
        gap: 0.4rem;
        padding: 0.5rem 1rem 1rem 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
    }
    
    .timeline-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .timeline-month-display {
        min-width: 90px;
        max-width: 120px;
        font-size: 0.85rem;
        padding: 0 0.5rem;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    
    .timeline-info {
        margin: 1rem 1.5rem 0 1.5rem;
        padding: 0.75rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .time-range-selector {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .time-range-title {
        font-size: 1.5rem;
    }
    
    .time-scale {
        padding: 0;
    }
    
    .time-scale-mark {
        font-size: 0.625rem;
    }
    
    .time-range-labels {
        padding: 0 0.5rem;
    }
    
    .time-label-value {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    
    .time-range-handle {
        width: 28px;
        height: 28px;
        border-width: 4px;
    }
    
    .time-range-handle:hover {
        transform: translate(-50%, -50%) scale(1.3);
    }
    
    .time-range-track {
        height: 10px;
        margin: 1.5rem 0;
    }
    
    .time-range-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .timeline-title h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .timeline-nav {
        gap: 0.75rem;
        padding: 0.4rem;
    }
    
    .timeline-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .timeline-month-display {
        min-width: 100px;
        padding: 0 0.75rem;
    }
    
    .timeline-scroll {
        gap: 0.75rem;
        padding: 0.75rem 0 1.5rem 0;
    }
    
    .timeline-day {
        width: 70px;
        padding: 0.75rem 0.4rem;
    }
    
    .timeline-date {
        font-size: 1.25rem;
    }
    
    .timeline-weekday,
    .timeline-month-short {
        font-size: 0.65rem;
    }
    
    .timeline-scroll-nav {
        width: 40px;
        height: 40px;
    }
    
    .timeline-scroll-nav.left {
        left: 0;
    }
    
    .timeline-scroll-nav.right {
        right: 0;
    }
    
    .timeline-quick-nav {
        gap: 0.4rem;
    }
    
    .timeline-quick-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Info Box Mobile Anpassung */
    .info-box {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .info-box svg {
        width: 18px;
        height: 18px;
    }
    
    .info-box__text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Date Input Section für kleine Screens (Wiederholung für Spezifität) */
    .date-input-section {
        padding: 1rem 0.75rem;
        border-radius: 12px;
        margin: 0.75rem 0;
        background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
        border: 1px solid rgba(255, 215, 0, 0.32);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            0 26px 48px rgba(0, 0, 0, 0.55);
        overflow: hidden;
    }
    
    .timeline-calendar-container {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        background: transparent;
        border: none;
    }
    
    .timeline-title h3 {
        font-size: 1.25rem;
    }
    
    .calendar-icon {
        width: 28px;
        height: 28px;
    }
    
    .timeline-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .timeline-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        margin-bottom: 1rem;
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timeline-title {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .timeline-nav {
        width: 100%;
        max-width: 240px;
        padding: 0.4rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .timeline-scroll {
        padding: 0.5rem 0.5rem 1rem 0.5rem;
        gap: 0.4rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
    }
    
    .timeline-day {
        width: 60px;
        padding: 0.6rem 0.3rem;
        border-radius: 12px;
    }
    
    .timeline-date {
        font-size: 1.125rem;
    }
    
    .timeline-weekday,
    .timeline-month-short {
        font-size: 0.6rem;
    }
    
    .timeline-scroll-nav {
        display: none; /* Hide arrows on very small screens */
    }
    
    .timeline-quick-nav {
        margin-bottom: 0.75rem;
    }
    
    .timeline-quick-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .timeline-info {
        margin: 1rem 0;
        padding: 0.8rem;
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .timeline-day:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .timeline-day:hover::before {
        background: transparent;
    }
    
    .timeline-day:active {
        transform: scale(0.95);
    }
    
    .timeline-nav-btn:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .timeline-nav-btn:active {
        transform: scale(0.95);
    }
}

/* removed legacy calendar overrides */

/* Premium Date Range Inputs */

.date-range-inputs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: 1.25rem;
    justify-items: stretch;
    margin-bottom: 1.75rem;
    width: 100%;
}

.date-input-group {
    flex: 1;
    max-width: none;
    position: relative;
}

.date-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255, 245, 230, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Premium Date Input */
.date-input {
    width: 100%;
    appearance: none;
    padding: 1.15rem 1.35rem;
    border: 1.5px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 245, 230, 0.95);
    background: linear-gradient(160deg, rgba(34, 14, 14, 0.92) 0%, rgba(18, 6, 6, 0.95) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 16px 28px rgba(0, 0, 0, 0.4);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    text-align: center;
}

.date-input::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.08) 60%, transparent 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.date-input:hover::before {
    opacity: 1;
}

.date-input:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 36px rgba(0, 0, 0, 0.5);
}

.date-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.75);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 40px rgba(0, 0, 0, 0.55);
    background: linear-gradient(160deg, rgba(34, 14, 14, 0.95) 0%, rgba(18, 6, 6, 0.98) 100%);
}

.date-input:focus::before {
    opacity: 1;
}

/* Premium Date Separator */
.date-range-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 245, 230, 0.75);
    padding-top: 1.5rem;
    position: relative;
    align-self: center;
}

.date-range-separator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(255, 245, 230, 0.7);
}

.date-range-separator svg {
    width: 24px;
    height: 24px;
    padding: 6px;
    background: linear-gradient(160deg, rgba(34, 12, 12, 0.9) 0%, rgba(18, 6, 6, 0.95) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: rgba(255, 215, 0, 0.8);
}

.date-range-separator:hover svg {
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.3) 0%, rgba(34, 12, 12, 0.92) 100%);
    transform: scale(1.08);
    border-color: rgba(255, 215, 0, 0.55);
}

/* Premium Date Info */
.date-range-info {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(155deg, rgba(34, 14, 14, 0.85) 0%, rgba(18, 6, 6, 0.88) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    color: rgba(255, 245, 230, 0.9);
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 32px rgba(0, 0, 0, 0.4);
}

/* ===================================
   HAMMER CUSTOM DATEPICKER
   Premium Kalender Overlay
   =================================== */

/* Datepicker Overlay */
.custom-datepicker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-datepicker-overlay.show {
    display: flex;
    opacity: 1;
}

/* Datepicker Container */
.custom-datepicker {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 248, 248, 0.95) 100%);
    border: 2px solid rgba(97, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 20px 60px rgba(97, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    max-width: 400px;
    width: 90vw;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.custom-datepicker-overlay.show .custom-datepicker {
    transform: scale(1);
}

.custom-datepicker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(97, 0, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.custom-datepicker > * {
    position: relative;
    z-index: 2;
}

/* Datepicker Header */
.datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.datepicker-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #610000;
}

.datepicker-close {
    width: 40px;
    height: 40px;
    background: rgba(97, 0, 0, 0.08);
    border: 2px solid rgba(97, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #610000;
}

.datepicker-close svg {
    width: 20px;
    height: 20px;
    stroke: #610000;
    stroke-width: 2.5;
}

.datepicker-close:hover {
    background: rgba(97, 0, 0, 0.15);
    border-color: rgba(97, 0, 0, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.datepicker-close:hover svg {
    stroke: #8b0000;
}

/* Datepicker Navigation */
.datepicker-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.datepicker-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(97, 0, 0, 0.08);
    border: 2px solid rgba(97, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #610000;
}

.datepicker-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke: #610000;
    stroke-width: 2.5;
}

.datepicker-nav-btn:hover {
    background: rgba(97, 0, 0, 0.15);
    border-color: rgba(97, 0, 0, 0.3);
    transform: scale(1.1);
}

.datepicker-nav-btn:hover svg {
    stroke: #8b0000;
}

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

.datepicker-current-month {
    font-size: 1.25rem;
    font-weight: 700;
    color: #610000;
    text-align: center;
    min-width: 120px;
}

/* Datepicker Calendar Grid */
.datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.datepicker-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.datepicker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: #610000;
    background: transparent;
}

.datepicker-day:hover:not(.disabled):not(.other-month) {
    background: rgba(97, 0, 0, 0.08);
    transform: scale(1.1);
}

.datepicker-day.other-month {
    color: #adb5bd;
}

.datepicker-day.disabled {
    color: #dee2e6;
    cursor: not-allowed;
}

.datepicker-day.today {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

.datepicker-day.weekend {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #DAA520;
    font-weight: 700;
}

.datepicker-day.selected {
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(97, 0, 0, 0.3);
}

.datepicker-day.weekend.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 215, 0, 0.85) 100%);
    color: #2c1810;
    border: 2px solid #DAA520;
    font-weight: 800;
}

.datepicker-day.selected:hover {
    transform: scale(1.15);
}

.datepicker-day.weekend.selected:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 215, 0, 0.9) 100%);
    color: #1a1000;
}

/* Mobile Optimierung für Custom Datepicker */
@media (max-width: 768px) {
    .custom-datepicker {
        padding: 1.5rem;
        max-width: 320px;
    }
    
    .datepicker-title {
        font-size: 1.25rem;
    }
    
    .datepicker-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .datepicker-current-month {
        font-size: 1.125rem;
        min-width: 100px;
    }
    
    .datepicker-day {
        font-size: 0.8rem;
    }
}

/* Time Selection */
.time-section {
    margin: 3rem 0;
}

.time-section .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #610000;
    text-align: center;
    margin-bottom: 2rem;
}

/* cleaned: removed old time grid/card/icon/label rules */

/* Premium Contact Section */
.contact-section {
    background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 22px;
    padding: 2.5rem 2.75rem;
    margin: 3rem 0;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 56px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 215, 0, 0.28) 0%, transparent 60%),
        radial-gradient(circle at 80% 78%, rgba(255, 215, 0, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.08) 0%, transparent 72%);
    pointer-events: none;
    z-index: 1;
}

.contact-section > * {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 245, 230, 0.95);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.contact-form-grid {
    max-width: 820px;
    margin: 0 auto;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.75rem;
}

.form-row .form-group {
    margin-bottom: 0; /* Form-groups in rows should not have additional margin */
}

.contact-form-grid .form-group:last-child {
    margin-bottom: 0; /* Remove bottom margin from last form field */
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255, 245, 230, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

/* Premium Form Inputs */
.form-input {
    width: 100%;
    padding: 1.1rem 1.35rem;
    border: 1.5px solid rgba(255, 215, 0, 0.35);
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 245, 230, 0.95);
    background: linear-gradient(160deg, rgba(28, 10, 10, 0.92) 0%, rgba(18, 6, 6, 0.95) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 22px 44px rgba(0, 0, 0, 0.5);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 26px 48px rgba(0, 0, 0, 0.55);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.75);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 52px rgba(0, 0, 0, 0.6);
    background: linear-gradient(160deg, rgba(28, 10, 10, 0.95) 0%, rgba(18, 6, 6, 0.98) 100%);
}

.form-input::placeholder {
    color: rgba(255, 245, 230, 0.45);
    font-weight: 400;
}

/* Consent Section */
.contact-section .consent-section {
    margin: 2rem 0;
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.15);
}

.modern-checkbox input:checked + .checkbox-mark {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
}

.modern-checkbox input:checked + .checkbox-mark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #610000;
    font-size: 13px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.checkbox-text {
    color: rgba(255, 245, 230, 0.88);
    line-height: 1.6;
    text-shadow: none;
}

.checkbox-text a {
    color: rgba(255, 215, 0, 0.85);
    text-decoration: underline;
    font-weight: 600;
    text-shadow: none;
}

.checkbox-text a:hover {
    color: rgba(255, 245, 230, 0.95);
    text-shadow: none;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 245, 230, 0.82);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 215, 0, 0.78);
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 18px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.guarantee-box svg {
    width: 52px;
    height: 52px;
    color: #ffd700;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.25));
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.guarantee-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.guarantee-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Strong override: selected day as small ring, no big tile */
/* removed premium-calendar overrides */

/* removed unused hover sizing for .premium-calendar-wrapper/.calendar-container */

/* Responsive Design for Step 7 */
@media (max-width: 768px) {
    .date-method-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .date-range-inputs {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        align-items: stretch;
    }
    
    .date-input-group {
        max-width: 100%;
        width: 100%;
    }
    
    .date-input {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .date-range-separator {
        display: none;
    }

    .timeline-scroll-nav {
        display: none;
    }
    
    .trust-elements {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 0.75rem;
        gap: 0.375rem;
        flex: 0 1 auto;
        min-width: fit-content;
    }
    
    .trust-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .guarantee-box svg {
        width: 44px;
        height: 44px;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin: 2rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-section .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row .form-group {
        margin-bottom: 0;
    }
    
    .contact-form-grid .form-group:last-child {
        margin-bottom: 0;
    }
    
    .form-input {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Fix iOS Safari zoom */
        border-radius: 12px;
    }
    
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* Step 7: Container randlos & vollbreit auf Mobile */
    .form-step[data-step="7"] .final-details-section {
        margin: 0 -0.75rem 2.5rem;
        width: calc(100% + 1.5rem);
    }

    .form-step[data-step="7"] .date-method-section,
    .form-step[data-step="7"] .date-input-section,
    .form-step[data-step="7"] .time-range-selector,
    .form-step[data-step="7"] .contact-section {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        width: calc(100% + 1.5rem);
        border-radius: 0;
        box-sizing: border-box;
    }

    .form-step[data-step="7"] .date-method-section {
        padding: 0 1.25rem 2.25rem;
    }


    .form-step[data-step="7"] .date-input-section {
        padding: clamp(24px, 6.8vw, 36px) clamp(18px, 5vw, 28px);
        background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
        border-radius: clamp(16px, 4vw, 20px);
        border: 1px solid rgba(255, 215, 0, 0.32);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            0 26px 48px rgba(0, 0, 0, 0.55);
        overflow: hidden;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .form-step[data-step="7"] .timeline-calendar-container {
        padding: clamp(18px, 5.3vw, 30px) clamp(0px, 1vw, 4px);
        margin: 0;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
        box-sizing: border-box;
    }

    .form-step[data-step="7"] .time-range-selector {
        padding: clamp(22px, 6.5vw, 34px) clamp(0px, 1vw, 4px);
        margin-top: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        overflow: visible;
    }

    .form-step[data-step="7"] .time-range-track {
        margin: 1.5rem 0;
    }

    .form-step[data-step="7"] .time-range-labels {
        padding: 0;
        gap: 1rem;
    }

    .form-step[data-step="7"] .time-label-value {
        font-size: 0.95rem;
    }

    .form-step[data-step="7"] .contact-section {
        padding: clamp(22px, 6vw, 30px) clamp(0px, 1vw, 6px);
        box-shadow: none;
    }

    .form-step[data-step="7"] .time-timeline,
    .form-step[data-step="7"] .time-scale,
    .form-step[data-step="7"] .time-range-labels,
    .form-step[data-step="7"] .time-range-info {
        padding: 0 clamp(0px, 1vw, 6px);
    }

    .form-step[data-step="7"] .time-range-track {
        margin: 1rem 0;
    }

    .form-step[data-step="7"] .contact-form-grid {
        max-width: none;
        width: 100%;
        margin: 0;
    }
}

/* removed unused mobile tuning for .premium-calendar-wrapper @640px */

/* removed unused mobile tuning for .premium-calendar-wrapper @480px */

/* (removed) OLD CSS: Date & Time Selection Card */

/* removed unused section header and alert styles */

/* removed unused .calendar-container block */

/* Flexible Date Option */
.flexible-date-option {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.flexible-date-option:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.flexible-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    justify-content: center;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(97, 0, 0, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
    flex-shrink: 0;
}

.flexible-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.flexible-checkbox input:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.flexible-checkbox input:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #610000;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label-text {
    font-weight: 600;
    color: #610000;
}

.checkbox-label-text .discount {
    color: #22c55e;
    font-weight: 700;
}

/* removed unused time selection card styles */

/* Contact Information Card */
.contact-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group.floating-label {
    position: relative;
}

.premium-input {
    width: 100%;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2a0808;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-input::placeholder {
    color: transparent;
}

.premium-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.08);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.premium-input:valid,
.premium-input:not(:placeholder-shown) {
    border-color: rgba(97, 0, 0, 0.2);
}

.input-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0 0.5rem;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.premium-input:focus ~ .input-label,
.premium-input:not(:placeholder-shown) ~ .input-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: #610000;
    font-weight: 700;
}

/* Consent Section */
.contact-card .consent-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label:hover {
    transform: translateX(4px);
}

.checkbox-label input[type="checkbox"] {
    min-width: 20px;
    height: 20px;
    accent-color: #610000;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label span {
    color: #2a0808;
    line-height: 1.5;
    font-weight: 500;
}

.checkbox-label a {
    color: #610000;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #ffd700;
    text-decoration: none;
}

/* Premium Guarantee Box */
/* removed unused guarantee section */

/* Step Actions - Navigation Buttons */
.step-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.journey-section .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    min-height: 50px;
}

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

.journey-section .btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: #4a3333;
    border: 2px solid rgba(97, 0, 0, 0.1);
}

.journey-section .btn-secondary:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #fafafa 100%);
    border-color: rgba(139, 0, 0, 0.3);
    color: #610000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 0, 0, 0.15);
}

.journey-section .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #610000;
    border: 1px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    font-weight: 600;
}

.journey-section .btn-primary:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.45);
    border-color: rgba(218, 165, 32, 0.4);
}

.journey-section .btn-primary:disabled {
    background: #e9ecef;
    color: #adb5bd;
    border-color: #dee2e6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.journey-section .btn-submit {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #610000;
    border: 2px solid rgba(255, 215, 0, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.journey-section .btn-submit:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.55);
    border-color: rgba(255, 215, 0, 0.6);
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: checkmarkGrow 0.6s ease-in-out;
}

.checkmark__circle {
    stroke: #ffd700;
    stroke-width: 3;
    stroke-miterlimit: 10;
    fill: none;
    animation: checkmarkCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    stroke: #610000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmarkCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

@keyframes checkmarkGrow {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes checkmarkCircle {
    0% { stroke-dasharray: 0 157; }
    100% { stroke-dasharray: 157 157; }
}

@keyframes checkmarkCheck {
    100% { stroke-dashoffset: 0; }
}

.form-success h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #610000;
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #610000;
    font-weight: 600;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: #610000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journey-section {
        padding: 4.5rem 0 2.5rem 0;
    }
    
    .step-content {
        padding: 1.4rem 1.35rem 1.7rem;
    }
    
    .journey-steps {
        gap: 0.5rem;
    }

    .size-cards {
        align-items: stretch;
    }
    .size-card {
        display: flex;
        height: 100%;
    }
    .size-cards .card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 0.95rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 1.75rem 0 1.05rem 0;
        overflow: visible;
        scroll-margin-top: 80px;
    }
    
    .team-size-selector,
    .occasion-selection,
    .group-detail-section,
    .detail-card-grid,
    .value-card-grid,
    .value-option-grid,
    .date-method-grid,
    .location-method-grid,
    .experience-choice-grid,
    .emotion-choice-grid {
        margin-top: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .journey-header {
        margin-bottom: clamp(2rem, 6.5vw, 3rem);
    }
    
    .journey-progress {
        margin-bottom: 0.08rem;
    }
    
    .journey-steps {
        /* Mobile: Gleichmäßige Verteilung aller vorhandenen Schritte */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        justify-items: center;
        align-items: start;
        padding: 0 0 0.32rem 0; /* Fix: kein seitliches Padding */
        gap: 0.4rem 0.32rem;
        margin: -0.1rem 0 0; /* Fix: kein negativer Margin-Offset links */
        overflow: visible;
    }
    
    .step-header {
        margin-bottom: 0.6rem !important;
    }

    .step-title {
        margin-top: 0;
        margin-bottom: 0.02rem;
        font-size: clamp(1.48rem, 5.2vw, 1.95rem);
    }

    .step-subtitle {
        margin: 0.15rem auto 1rem !important;
        font-size: 0.96rem;
    }

    /* Nur aktiven Step-Text zeigen, restliche Labels verbergen */
    .journey-step .step-label {
        display: none;
    }
    .journey-step.active .step-label {
        display: block;
        /* Verhindert unschöne Worttrennungen wie bei "Wünsche" */
        overflow-wrap: normal;
        word-break: normal;
        white-space: normal;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .step-label {
        font-size: 0.7rem;
        /* Fix: kein erzwungenes nowrap */
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    
    .step-content {
        padding: 0.04rem clamp(0.55rem, 2.2vw, 0.9rem) clamp(1.24rem, 3.6vw, 1.7rem) !important;
    }

    .form-step[data-step="7"] .final-details-section {
        margin: 0 -0.75rem 2.5rem;
        width: calc(100% + 1.5rem);
    }

    .form-step[data-step="7"] .date-method-section,
    .form-step[data-step="7"] .date-input-section,
    .form-step[data-step="7"] .time-range-selector,
    .form-step[data-step="7"] .timeline-calendar-container,
    .form-step[data-step="7"] .contact-section,
    .form-step[data-step="7"] .contact-form-grid {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        width: calc(100% + 1.5rem);
        border-radius: 0;
        box-sizing: border-box;
    }

    .form-step[data-step="7"] .date-method-section {
        padding: 0 1.25rem 2.25rem;
    }

    .form-step[data-step="7"] .date-input-section {
        padding: clamp(26px, 7vw, 36px) clamp(20px, 6vw, 30px);
        background: linear-gradient(160deg, rgba(18, 6, 6, 0.94) 0%, rgba(10, 4, 4, 0.96) 100%);
        border-radius: clamp(18px, 5vw, 24px);
        border: 1px solid rgba(255, 215, 0, 0.32);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            0 26px 48px rgba(0, 0, 0, 0.55);
        overflow: hidden;
    }

    .form-step[data-step="7"] .timeline-calendar-container {
        padding: clamp(18px, 5.5vw, 28px) clamp(16px, 5.5vw, 26px);
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }

    .form-step[data-step="7"] .timeline-scroll {
        padding: 0.5rem 1rem 1.25rem 1rem;
        width: 100%;
    }

    .form-step[data-step="7"] .time-range-selector {
        padding: clamp(26px, 7vw, 36px) clamp(18px, 6vw, 28px);
        margin-top: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        overflow: visible;
    }

    .form-step[data-step="7"] .time-range-track {
        margin: 1.5rem 0;
    }

    .form-step[data-step="7"] .time-range-labels {
        padding: 0;
        gap: 1rem;
    }

    .form-step[data-step="7"] .time-label-value {
        font-size: 0.95rem;
    }

    .form-step[data-step="7"] .contact-section {
        padding: clamp(28px, 7vw, 38px) clamp(18px, 6vw, 28px);
        box-shadow: none;
    }

    .form-step[data-step="7"] .contact-form-grid {
        max-width: none;
        width: 100%;
        margin: 0;
    }
    
    .premium-welcome {
        padding: 4rem 1.25rem 3rem; /* seitlich reduziert für mehr Headline-Breite */
    }
    
    .welcome-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        margin-bottom: 1.25rem;
        word-break: keep-all; /* Mystery Erlebnis zusammenhalten */
    }
    
    /* Die beiden gold-highlight Wörter als untrennbare Einheit behandeln */
    .hero-word.highlight-gold:nth-of-type(4) {
        margin-right: 0.3em;
    }
    
    .hero-word.highlight-gold:nth-of-type(4),
    .hero-word.highlight-gold:nth-of-type(5) {
        display: inline;
        white-space: nowrap;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        font-weight: 600;
    }
    
    .premium-features {
        margin: 0 auto 3rem;
    }
    
    .premium-welcome-text {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .value-headline {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 1.25rem;
    }
    
    .value-subheadline {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 2.5rem;
        font-weight: 600;
    }
    
    .trust-points {
        gap: 1.25rem;
    }
    
    .trust-point {
        gap: 0.875rem;
    }
    
    .trust-icon {
        width: 36px;
        height: 36px;
    }
    
    .trust-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .trust-content h3 {
        font-size: 1rem;
    }
    
    .trust-content p {
        font-size: 0.875rem;
    }
    
    .urgency-banner {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-mystery-start {
        font-size: 1.1rem;
        padding: 1.2rem 3rem;
    }

    .occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 3vw, 18px); }

    .gender-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gender-content {
        padding: 1rem 0.5rem;
        min-height: 85px;
        font-size: 0.9rem;
    }
    
    .gender-content span {
        white-space: nowrap;
    }
    
    .gender-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .premium-preferences-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .budget-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Budget Mobile Anpassungen */
    .budget-price {
        font-size: 1.5rem;
    }

    .budget-currency {
        font-size: 1.5rem;
    }

    .location-method-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-input-section {
        padding: 1.5rem;
    }

    .popular-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .radius-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-actions {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .step-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .success-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .enterprise-form {
        padding: 1rem;
        border-radius: 20px;
        margin-top: 0.18rem;
    }
    
    .form-step {
        margin: 0.35rem auto;
        overflow: visible; /* zusätzliche Absicherung für sehr kleine Screens */
        border-radius: 16px;
    }
    
    .step-content {
        padding: 1.05rem 0.95rem; /* noch kompakter seitlich auf sehr kleinen Screens */
    }
    
    .premium-welcome {
        padding: 2.5rem 0.75rem 2rem; /* links/rechts reduziert für maximale Headline-Breite */
    }
    
    .welcome-hero-title {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
        word-break: keep-all; /* Mystery Erlebnis zusammenhalten */
    }
    
    /* Die beiden gold-highlight Wörter als untrennbare Einheit behandeln */
    .hero-word.highlight-gold:nth-of-type(4) {
        margin-right: 0.3em;
    }
    
    .hero-word.highlight-gold:nth-of-type(4),
    .hero-word.highlight-gold:nth-of-type(5) {
        display: inline;
        white-space: nowrap;
    }
    
    .welcome-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .premium-features {
        margin: 0 0 2rem 0; /* negative Margins entfernen */
    }
    
    .premium-welcome-text {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    
    .value-headline {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .value-subheadline {
        font-size: 0.95rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .trust-points {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .trust-point {
        gap: 0.75rem;
    }
    
    .trust-icon {
        width: 32px;
        height: 32px;
    }
    
    .trust-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .trust-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .trust-content p {
        font-size: 0.825rem;
        line-height: 1.4;
    }
    
    .urgency-banner {
        padding: 0.75rem 1rem;
        font-size: 0.825rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .urgency-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-mystery-start {
        font-size: 0.95rem;
        padding: 1rem 2rem;
        gap: 0.5rem;
    }
    
    .btn-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Contact Section Extra Small Screens */
    .contact-section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 1rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-grid {
        max-width: 100%;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Fix iOS Safari zoom */
        border-radius: 10px;
    }

    .form-step[data-step="7"] .final-details-section {
        margin: 0 -0.5rem 1.75rem;
        width: calc(100% + 1rem);
    }

    .form-step[data-step="7"] .date-method-section,
    .form-step[data-step="7"] .date-input-section,
    .form-step[data-step="7"] .time-range-selector,
    .form-step[data-step="7"] .timeline-calendar-container,
    .form-step[data-step="7"] .contact-section,
    .form-step[data-step="7"] .contact-form-grid {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: calc(100% + 1rem);
        border-radius: 0;
    }

    .form-step[data-step="7"] .date-method-section {
        padding: 0 1rem 2rem;
    }

    .form-step[data-step="7"] .date-input-section {
        padding: clamp(22px, 9vw, 30px) clamp(18px, 7vw, 26px);
    }

    .form-step[data-step="7"] .timeline-calendar-container {
        padding: clamp(16px, 6vw, 22px) clamp(12px, 6vw, 20px);
    }

    .form-step[data-step="7"] .timeline-scroll {
        padding: 0.5rem 0.75rem 1.25rem 0.75rem;
        width: 100%;
    }

    .form-step[data-step="7"] .time-range-selector {
        padding: clamp(22px, 8vw, 32px) clamp(16px, 6.5vw, 24px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    }

    .form-step[data-step="7"] .time-range-track {
        margin: 1.25rem 0;
    }

    .form-step[data-step="7"] .time-label-value {
        font-size: 0.9rem;
    }

    .form-step[data-step="7"] .contact-section {
        padding: clamp(24px, 8vw, 32px) clamp(16px, 6.5vw, 24px);
        box-shadow: none;
    }
    
    /* Trust Elements für sehr kleine Bildschirme */
    .trust-elements {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .trust-item svg {
        width: 14px;
        height: 14px;
    }
    
    .group-detail-section {
        margin: 2rem 0 0 0; /* negative Margins entfernen */
    }
    
    .premium-welcome {
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .welcome-hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 1rem;
        word-break: keep-all; /* Mystery Erlebnis zusammenhalten */
    }
    
    /* Die beiden gold-highlight Wörter als untrennbare Einheit behandeln */
    .hero-word.highlight-gold:nth-of-type(4) {
        margin-right: 0.3em;
    }
    
    .hero-word.highlight-gold:nth-of-type(4),
    .hero-word.highlight-gold:nth-of-type(5) {
        display: inline;
        white-space: nowrap;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        font-weight: 600;
    }
    
    .premium-features {
        margin: 0 auto 2.5rem;
    }
    
    .premium-welcome-text {
        padding: 2.25rem 1.5rem;
        border-radius: 18px;
    }
    
    .value-headline {
        font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    }
    
    .value-subheadline {
        font-size: 0.975rem;
    }
    
    .trust-points {
        gap: 1.125rem;
    }
    
    .trust-content h3 {
        font-size: 0.975rem;
    }
    
    .trust-content p {
        font-size: 0.85rem;
    }
    
    .btn-mystery-start {
        font-size: 1rem;
        padding: 1.1rem 2.5rem;
    }
    
    .size-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        align-items: stretch; /* gleich hohe Karten je Reihe */
    }
    .size-card {
        display: flex;
        height: 100%;
        min-height: clamp(120px, 34vw, 168px); /* kompakte Kachel-Proportion */
    }
    .size-cards .card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 0.4rem; /* engeres Spacing zwischen Icon, Titel, Meta */
        padding: 0.9rem 0.75rem; /* kompakteres Padding */
    }

    .card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.5rem;
    }
    .card-icon svg {
        width: 22px;
        height: 22px;
    }
    .card-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }
    .card-content p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        line-height: 1.25;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; /* auf 2 Zeilen begrenzen */
    }
    .card-badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }
    
    .occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 3vw, 18px); }
    
    .budget-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Budget für sehr kleine Bildschirme */
    .budget-price {
        font-size: 1.25rem;
    }
    
    .budget-currency {
        font-size: 1.25rem;
    }
    
    .custom-budget-section {
        padding: 1.5rem;
    }
    
    .custom-budget-input-wrapper input {
        width: 120px;
        font-size: 1.125rem;
    }
    
    .location-method-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-method-content {
        padding: 1.5rem 1rem;
    }
    
    .location-input-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .location-input-wrapper {
        padding: 0.75rem 1rem;
    }
    
    .popular-cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .city-suggestion {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .radius-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .radius-card-content {
        padding: 1rem 0.75rem;
    }
    
    /* removed .premium-time-cards mobile grid */
    
    .calendar-days {
        gap: 0.125rem;
    }
    
    
    
    
    
    
    
    .calendar-day {
        font-size: 0.875rem;
    }
    
    
    
    .guarantee-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .guarantee-icon {
        width: 48px;
        height: 48px;
    }
    
    .guarantee-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .guarantee-text h4 {
        font-size: 1.25rem;
    }
    
    .guarantee-text p {
        font-size: 0.875rem;
    }
    
    .journey-progress {
        padding: 0; /* Vereinheitlicht: keine seitlichen Offsets */
        margin-bottom: 0.65rem;
        overflow: visible;
    }
    
    .journey-steps {
        gap: 0.5rem;
        padding: 1rem 0 1.25rem 0; /* keine seitlichen Paddings */
        margin: 0; /* kein negativer Margin-Offset */
        overflow: visible;
    }
    
    .step-dot {
        width: 18px;
        height: 18px;
    }
    
    .journey-step.active .step-dot {
        transform: scale(1.15);
        border-width: 2px;
        box-shadow: 
            0 3px 12px rgba(255, 215, 0, 0.25),
            0 1px 6px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(218, 165, 32, 0.6);
    }
    
    .journey-step.completed .step-dot {
        transform: scale(1.05);
        border-width: 2px;
        box-shadow: 
            0 2px 10px rgba(218, 165, 32, 0.2),
            0 1px 4px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(184, 134, 11, 0.6);
    }
    
    .journey-step.completed .step-dot::after {
        font-size: 12px;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .form-step {
        border-width: 3px;
    }
    
    .journey-section .btn {
        border-width: 3px;
    }
}

/* Print Styles */
@media print {
    .journey-section {
        background: white;
        padding: 2rem 0;
    }
    
    .journey-bg-animation,
    .welcome-atmosphere {
        display: none;
    }
    
    .form-step {
        box-shadow: none;
        border: 2px solid #610000;
    }
    
    .journey-section .btn {
        border: 2px solid #610000;
    }
}

/* Desktop: größere Buttons */
@media (min-width: 1025px) {
    .journey-section .btn {
        padding: 1.3rem 3rem;
        font-size: 1.15rem;
        min-height: 56px;
    }

    .journey-section .btn-primary {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.45);
    }

    .journey-section .btn-submit {
        padding: 1.4rem 3.4rem;
        font-size: 1.2rem;
    }

    .journey-section .btn-mystery-start {
        font-size: 1.35rem;
        padding: 1.6rem 4rem;
    }
}

/* Final Mobile Step-Typo Overrides (nach allen Regeln, damit sie greifen) */
@media (max-width: 768px) {
    .enterprise-form .form-step .step-title {
        margin-bottom: 0.25rem;
    }
    .enterprise-form .form-step .step-subtitle,
    .enterprise-form .form-step .value-subheadline,
    .enterprise-form .form-step .date-method-description,
    .enterprise-form .form-step .location-method-description {
        font-size: 0.95rem;
        line-height: 1.55;
        font-weight: 600;
        margin-top: 0.12rem;
        margin-bottom: 1.25rem;
    }

    .enterprise-form .form-step[data-step="1"] .step-title {
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: baseline;
        gap: 0.35rem;
        white-space: nowrap;
        font-size: clamp(1.45rem, 5.5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .enterprise-form .form-step .step-title {
        margin-bottom: 0.32rem;
    }
    .enterprise-form .form-step .step-subtitle,
    .enterprise-form .form-step .value-subheadline,
    .enterprise-form .form-step .date-method-description,
    .enterprise-form .form-step .location-method-description {
        font-size: 0.92rem;
        line-height: 1.5;
        font-weight: 600;
        margin-top: 0.1rem !important;
        margin-bottom: 0.9rem !important;
    }

    .enterprise-form .form-step[data-step="1"] .step-title {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
        gap: 0.28rem;
    }
}

.noscript-fallback {
    background: rgba(97, 0, 0, 0.15);
    border: 1px solid rgba(97, 0, 0, 0.35);
    padding: 24px;
    margin: 24px 0;
    border-radius: 12px;
    color: #ffffff;
}

.noscript-fallback h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.noscript-fallback a {
    color: #f2d2d2;
    text-decoration: underline;
}

.noscript-fallback a:hover,
.noscript-fallback a:focus {
    color: #ffffff;
}
