.lc-2734-wrapper {
    position: relative;
    width: 100%;
    font-family: 'Cairo', sans-serif;
}

.lc-2734-modal {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,249,250,0.95));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    min-height: 320px;
}

.lc-2734-step {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    opacity: 0;
    transform: translateX(-30px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-2734-step.lc-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.lc-2734-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    line-height: 1.4;
}

.lc-2734-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.lc-2734-trust-badge {
    background: rgba(97, 206, 112, 0.1);
    color: #61CE70;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
}

.lc-2734-urgency {
    font-size: 13px;
    color: #e74c3c;
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
}

.lc-2734-input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: #fff;
}

.lc-2734-input:focus {
    border-color: #0D6EFD;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.lc-2734-btn {
    width: 100%;
    background: linear-gradient(135deg, #0D6EFD 0%, #0b5ed7 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.lc-2734-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

.lc-2734-progress {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
}

.lc-2734-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.lc-2734-checkboxes label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: background 0.2s;
}

.lc-2734-checkboxes label:hover {
    background: #f8f9fa;
}

.lc-2734-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}