.wl-waitinglist-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at top left, #f9fafb 0, #f3f4f6 40%, #f97316 120%);
}

.wl-waitinglist-inner {
    max-width: 960px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.wl-heading {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.wl-subheading {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 32px;
}

.wl-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    padding: 32px 24px;
    max-width: 640px;
    margin: 0 auto;
}

.wl-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wl-field {
    position: relative;
}

.wl-field input[type="text"],
.wl-field input[type="email"] {
    width: 100%;
    padding: 14px 52px 14px 18px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background-color: #f9fafb;
}

.wl-field input[type="text"]:focus,
.wl-field input[type="email"]:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.3);
    background-color: #ffffff;
}

.wl-field-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #9ca3af;
    pointer-events: none;
}

/* Simple icon representations using pseudo-characters */
.wl-icon-user::before {
    content: "\1F464";
}
.wl-icon-email::before {
    content: "\2709";
}

.wl-submit-btn {
    margin-top: 4px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fb923c, #f97316);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
}

.wl-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.6);
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.wl-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45);
}

.wl-message {
    margin: 0 auto 20px;
    max-width: 640px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
}

.wl-message.wl-success {
    background-color: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.wl-message.wl-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .wl-heading {
        font-size: 2.1rem;
    }

    .wl-card {
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .wl-heading {
        font-size: 1.75rem;
    }

    .wl-subheading {
        font-size: 1rem;
    }
}
