/* Wasteland Audit Portal - Cyberpunk / B2B Tech Foundry Style */

#wl-audit-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: #00f0ff;
    border: 1px solid #00f0ff;
    padding: 15px 25px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#wl-audit-fab:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

#wl-audit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#wl-audit-modal.active {
    opacity: 1;
    pointer-events: all;
}

.wl-modal-content {
    background: #111;
    border: 1px solid #333;
    border-top: 2px solid #00f0ff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    font-family: 'GeistVF', sans-serif;
    color: #eaeaea;
}

.wl-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.wl-close-btn:hover {
    color: #ff003c;
}

.wl-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.wl-modal-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.wl-modal-header p {
    color: #aaa;
    font-size: 16px;
}

.wl-packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.wl-package {
    border: 1px solid #222;
    background: #0a0a0a;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.wl-package:hover {
    transform: translateY(-5px);
    border-color: #00f0ff;
}

.wl-package h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    color: #00f0ff;
    margin-bottom: 15px;
}

.wl-package .wl-price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.wl-package ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.wl-package ul li::before {
    content: ">> ";
    color: #00f0ff;
}

.wl-btn-select {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.wl-package:hover .wl-btn-select {
    border-color: #00f0ff;
    color: #00f0ff;
}

/* Micro-commitment form */
.wl-lead-form {
    display: none;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 30px;
    margin-top: 20px;
}

.wl-lead-form.active {
    display: block;
}

.wl-form-step {
    display: none;
}

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

.wl-form-step h4 {
    color: #00f0ff;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.wl-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.wl-option-btn {
    background: #111;
    border: 1px solid #333;
    color: #aaa;
    padding: 15px;
    cursor: pointer;
    font-family: 'GeistVF', sans-serif;
    transition: all 0.2s ease;
}

.wl-option-btn:hover, .wl-option-btn.selected {
    border-color: #00f0ff;
    color: #fff;
    background: rgba(0, 240, 255, 0.05);
}

.wl-input-group {
    margin-bottom: 20px;
}

.wl-input-group label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 12px;
}

.wl-input-group input,
.wl-input-group textarea,
.wl-input-group select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    font-family: 'GeistVF', sans-serif;
}

.wl-input-group input:focus,
.wl-input-group textarea:focus,
.wl-input-group select:focus {
    outline: none;
    border-color: #00f0ff;
}

.wl-submit-btn {
    background: #00f0ff;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.wl-submit-btn:hover {
    background: #fff;
}
