.rach-funnel-wrapper {
    max-width: 500px;
    margin: 0 auto;
    font-family: inherit;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    color: #222;
}

.rach-funnel-wrapper * {
    box-sizing: border-box;
}

.rach-funnel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    min-height: 24px;
}

.rach-back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    font-weight: 600;
}

.rach-back-btn:hover {
    color: #000;
}

.rach-progress-container {
    flex-grow: 1;
    background: #eee;
    height: 6px;
    border-radius: 3px;
    margin-left: 15px;
    overflow: hidden;
}

.rach-progress-bar {
    height: 100%;
    background: #e30019;
    width: 0%;
    transition: width 0.4s ease;
}

.rach-screen {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.rach-screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.rach-headline {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    color: #111;
}

.rach-highlight {
    color: #e30019;
    font-weight: 800;
}

.rach-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.rach-signature {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

.rach-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rach-btn {
    width: 100%;
    padding: 18px 20px;
    /* Sehr große Touch-Fläche */
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.rach-btn-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #334155;
    text-align: left;
}

.rach-btn-option:hover,
.rach-btn-option:active {
    background: #eff6ff;
    border-color: #008bcf;
    color: #008bcf;
}

.rach-btn-primary {
    background: #e30019;
    color: #fff;
    border: 2px solid #e30019;
    font-size: 18px;
    padding: 20px;
}

.rach-btn-primary:hover {
    background: #ffffff;
    color: #e30019;
}

.rach-form-group {
    margin-bottom: 20px;
}

.rach-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.rach-form-group input[type="text"],
.rach-form-group input[type="email"],
.rach-form-group input[type="tel"] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.rach-form-group input:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
}

.rach-radio-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.rach-radio-item,
.rach-checkbox-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.rach-radio-item input,
.rach-checkbox-item input {
    margin-top: 4px;
    margin-right: 12px;
    transform: scale(1.3);
}

.rach-checkbox-item span {
    font-size: 14px;
    line-height: 1.5;
}

.rach-hint-toast {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: #008bcf;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.rach-hint-toast.show {
    transform: translateY(0);
}

.rach-error-msg {
    color: #dc2626;
    background: #fef2f2;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.rach-back-link {
    display: inline-block;
    margin-top: 15px;
    color: #e30019;
    text-decoration: none;
    font-weight: 600;
}

.rach-back-link:hover {
    text-decoration: underline;
}