/* My Local Window Cleaner premium front-end UI
   Scoped to plugin classes so it plays nicely with WordPress themes. */

:root {
    --wcl-navy: #0F172A;
    --wcl-navy-2: #1E293B;
    --wcl-blue: #0284C7;
    --wcl-blue-dark: #0369A1;
    --wcl-aqua: #06B6D4;
    --wcl-sky: #E0F2FE;
    --wcl-bg: #F8FAFC;
    --wcl-card: #FFFFFF;
    --wcl-border: #E2E8F0;
    --wcl-border-strong: #CBD5E1;
    --wcl-text: #334155;
    --wcl-muted: #64748B;
    --wcl-success: #16A34A;
    --wcl-success-soft: #DCFCE7;
    --wcl-warning: #F59E0B;
    --wcl-warning-soft: #FEF3C7;
    --wcl-error: #DC2626;
    --wcl-error-soft: #FEE2E2;
    --wcl-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --wcl-shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.06);
    --wcl-radius-xl: 24px;
    --wcl-radius-lg: 18px;
    --wcl-radius-md: 14px;
    --wcl-radius-sm: 10px;
}

.wcl-wrapper,
.wcl-wrapper * {
    box-sizing: border-box;
}

.wcl-wrapper {
    max-width: 1180px;
    margin: 34px auto;
    padding: 0 18px;
    color: var(--wcl-text);
    font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

.wcl-wrapper a {
    color: var(--wcl-blue);
    text-decoration: none;
}

.wcl-wrapper a:hover {
    color: var(--wcl-blue-dark);
    text-decoration: none;
}

.wcl-wrapper h1,
.wcl-wrapper h2,
.wcl-wrapper h3,
.wcl-wrapper h4 {
    color: var(--wcl-navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.wcl-wrapper h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 10px;
}

.wcl-wrapper h3 {
    font-size: 22px;
    margin: 0 0 10px;
}

.wcl-wrapper p {
    margin-top: 0;
}

/* Premium forms */
.wcl-form {
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--wcl-radius-xl);
    padding: clamp(22px, 4vw, 34px);
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.13), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
    box-shadow: var(--wcl-shadow);
}

.wcl-form h2:first-child::before,
.wcl-auth-card h2::before,
.wcl-marketplace h2::before,
.wcl-cleaner-dashboard > .wcl-dashboard-header h2::before,
.wcl-customer-dashboard > .wcl-dashboard-header h2::before {
    content: "My Local Window Cleaner";
    display: inline-flex;
    align-items: center;
    margin-bottom: 11px;
    padding: 6px 11px;
    border: 1px solid #BAE6FD;
    border-radius: 999px;
    background: var(--wcl-sky);
    color: var(--wcl-blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wcl-form > p,
.wcl-auth-card > p,
.wcl-dashboard-header p,
.wcl-panel-heading p,
.wcl-small-text {
    color: var(--wcl-muted);
}

.wcl-form label {
    display: block;
    margin: 17px 0;
    color: var(--wcl-navy-2);
    font-size: 14px;
    font-weight: 800;
}

.wcl-form input,
.wcl-form select,
.wcl-form textarea,
.wcl-filter-bar input,
.wcl-filter-bar select {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid var(--wcl-border-strong);
    border-radius: 12px;
    background: #FFFFFF;
    color: var(--wcl-navy);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.wcl-form input:focus,
.wcl-form select:focus,
.wcl-form textarea:focus,
.wcl-filter-bar input:focus,
.wcl-filter-bar select:focus {
    border-color: var(--wcl-blue);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.13);
}

.wcl-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wcl-checkbox {
    display: flex !important;
    gap: 11px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--wcl-border);
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--wcl-text) !important;
    font-weight: 600 !important;
}

.wcl-checkbox input {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--wcl-blue);
}

/* Buttons */
.wcl-form button,
.wcl-locked-box button,
.wcl-inline-form button,
.wcl-customer-actions button,
.wcl-compact-form button,
.wcl-button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 17px;
    background: linear-gradient(135deg, var(--wcl-blue) 0%, #2563EB 100%);
    color: #FFFFFF !important;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.22);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.wcl-form button:hover,
.wcl-locked-box button:hover,
.wcl-inline-form button:hover,
.wcl-customer-actions button:hover,
.wcl-compact-form button:hover,
.wcl-button-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--wcl-blue-dark) 0%, #1D4ED8 100%);
    box-shadow: 0 16px 30px rgba(2, 132, 199, 0.28);
}

.wcl-form button:disabled,
.wcl-locked-box button:disabled {
    cursor: not-allowed;
    opacity: .58;
    transform: none;
}

.wcl-button-link:not(.wcl-primary-link),
.wcl-customer-actions .wcl-danger-button,
.wcl-inline-form .wcl-danger-button {
    background: #FFFFFF;
    color: var(--wcl-navy) !important;
    border-color: var(--wcl-border);
    box-shadow: none;
}

.wcl-button-link:not(.wcl-primary-link):hover {
    border-color: var(--wcl-blue);
    color: var(--wcl-blue-dark) !important;
    background: #F8FAFC;
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-danger-button {
    border-color: #FECACA !important;
    color: var(--wcl-error) !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
}

.wcl-danger-button:hover {
    background: var(--wcl-error-soft) !important;
}

/* Notices */
.wcl-notice {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid var(--wcl-border);
    background: #FFFFFF;
    color: var(--wcl-text);
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-success {
    border-color: #BBF7D0;
    background: var(--wcl-success-soft);
    color: #166534;
}

.wcl-error {
    border-color: #FECACA;
    background: var(--wcl-error-soft);
    color: #991B1B;
}

.wcl-small-text {
    font-size: 14px;
    margin-top: 8px;
}

/* Auth */
.wcl-auth-wrapper {
    max-width: 560px;
}

.wcl-auth-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    padding: clamp(26px, 5vw, 42px);
    background:
        radial-gradient(circle at top left, rgba(2, 132, 199, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.13), transparent 30%),
        #FFFFFF;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.wcl-auth-card .wcl-form {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.wcl-brand-logo {
    text-align: center;
    margin: 0 auto 24px;
}

.wcl-brand-logo img {
    width: min(420px, 96%);
    max-height: 110px;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.wcl-brand-text {
    color: var(--wcl-navy);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* Dashboard headers */
.wcl-dashboard-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.96) 52%, rgba(3, 105, 161, 0.94) 100%),
        var(--wcl-navy);
    box-shadow: var(--wcl-shadow);
    overflow: hidden;
}

.wcl-dashboard-header::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -95px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 64%);
    pointer-events: none;
}

.wcl-dashboard-header h2,
.wcl-dashboard-header p {
    position: relative;
    z-index: 1;
}

.wcl-dashboard-header h2 {
    color: #FFFFFF;
}

.wcl-dashboard-header p {
    color: #CBD5E1;
    margin-bottom: 0;
}

.wcl-dashboard-actions {
    position: relative;
    z-index: 1;
}

.wcl-dashboard-header .wcl-button-link:not(.wcl-primary-link) {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
}

.wcl-primary-link {
    white-space: nowrap;
}

/* Statuses and pills */
.wcl-status-badge,
.wcl-credit-pill,
.wcl-completion-badge,
.wcl-rating-badge,
.wcl-trust-badge,
.wcl-credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.wcl-status-badge {
    border: 1px solid #BAE6FD;
    padding: 7px 10px;
    background: var(--wcl-sky);
    color: #075985;
}

.wcl-status-live { background: var(--wcl-success-soft); color: #166534; border-color: #BBF7D0; }
.wcl-status-contacted { background: var(--wcl-sky); color: #075985; border-color: #BAE6FD; }
.wcl-status-hired { background: #F0FDFA; color: #0F766E; border-color: #99F6E4; }
.wcl-status-closed,
.wcl-status-cancelled { background: #F1F5F9; color: #475569; border-color: var(--wcl-border); }

.wcl-credit-pill,
.wcl-completion-badge {
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats */
.wcl-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.wcl-stat-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-lg);
    padding: 18px;
    background: #FFFFFF;
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-stat-card::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -34px;
    width: 94px;
    height: 94px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.10);
}

.wcl-stat-card span {
    display: block;
    color: var(--wcl-muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.wcl-stat-card strong {
    display: block;
    color: var(--wcl-navy);
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

/* Panels */
.wcl-dashboard-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 18px;
    margin: 20px 0;
}

.wcl-dashboard-panel,
.wcl-dashboard-section,
.wcl-credit-wallet,
.wcl-filter-bar {
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-xl);
    padding: clamp(18px, 3vw, 24px);
    margin: 18px 0;
    background: #FFFFFF;
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.wcl-panel-heading h3,
.wcl-dashboard-section h3,
.wcl-dashboard-panel h3 {
    margin-top: 0;
}

.wcl-panel-heading p {
    margin-bottom: 0;
}

.wcl-progress-bar {
    height: 12px;
    border-radius: 999px;
    background: #E2E8F0;
    overflow: hidden;
    margin: 10px 0 13px;
}

.wcl-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--wcl-blue), var(--wcl-aqua));
    border-radius: inherit;
}

.wcl-dashboard-details {
    margin-top: 14px;
}

.wcl-dashboard-details summary {
    cursor: pointer;
    color: var(--wcl-blue-dark);
    font-weight: 900;
}

/* Filters */
.wcl-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
}

.wcl-filter-bar label {
    margin: 0;
    min-width: 190px;
    color: var(--wcl-navy-2);
    font-size: 14px;
    font-weight: 800;
}

/* Lead cards */
.wcl-lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.wcl-lead-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-xl);
    padding: 20px;
    background: #FFFFFF;
    box-shadow: var(--wcl-shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.wcl-lead-card:hover {
    transform: translateY(-2px);
    border-color: #BAE6FD;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
}

.wcl-lead-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--wcl-blue), var(--wcl-aqua));
}

.wcl-area-match {
    border-color: #7DD3FC;
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.12);
}

.wcl-area-match::before {
    height: 6px;
    background: linear-gradient(90deg, var(--wcl-success), var(--wcl-aqua));
}

.wcl-lead-card h3 {
    margin: 10px 0 14px;
    color: var(--wcl-navy);
    font-size: 22px;
}

.wcl-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--wcl-muted);
    font-size: 13px;
    font-weight: 800;
}

.wcl-lead-details {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 9px 12px;
    margin: 0 0 16px;
}

.wcl-lead-details dt {
    color: var(--wcl-muted);
    font-size: 13px;
    font-weight: 900;
}

.wcl-lead-details dd {
    margin: 0;
    color: var(--wcl-navy-2);
    font-weight: 650;
}

.wcl-locked-box,
.wcl-customer-box {
    border-radius: var(--wcl-radius-md);
    border: 1px dashed #7DD3FC;
    padding: 14px;
    background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
}

.wcl-customer-box {
    border-style: solid;
    border-color: #BBF7D0;
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
}

.wcl-customer-box p:last-child,
.wcl-locked-box p:last-child {
    margin-bottom: 0;
}

/* Credit packages */
.wcl-credit-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.wcl-credit-package {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 210px;
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-lg);
    padding: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-credit-package:nth-child(2) {
    border-color: #7DD3FC;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.13);
}

.wcl-credit-package:nth-child(2)::before {
    content: "Popular";
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--wcl-blue);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wcl-credit-badge {
    align-self: flex-start;
    padding: 6px 9px;
    background: var(--wcl-sky);
    color: #075985;
}

.wcl-credit-subtitle,
.wcl-credit-saving {
    color: var(--wcl-muted);
    font-size: 13px;
    font-weight: 700;
}

.wcl-credit-saving {
    color: var(--wcl-success);
}

.wcl-credit-price {
    color: var(--wcl-navy);
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

/* Profile and cleaner cards */
.wcl-profile-preview {
    margin: 16px 0 22px;
}

.wcl-profile-card,
.wcl-cleaner-card {
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-lg);
    padding: 17px;
    background: #FFFFFF;
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-cleaner-card {
    margin: 12px 0;
}

.wcl-profile-card-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.wcl-profile-name {
    display: block;
    color: var(--wcl-navy);
    font-size: 19px;
    letter-spacing: -0.02em;
}

.wcl-rating-badge {
    border: 1px solid #FDE68A;
    padding: 7px 10px;
    background: #FFFBEB;
    color: #92400E;
}

.wcl-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 11px 0;
}

.wcl-trust-badge {
    padding: 7px 10px;
    background: #EEF6FF;
    color: #075985;
    border: 1px solid #BAE6FD;
}

.wcl-profile-contact {
    border-top: 1px solid var(--wcl-border);
    padding-top: 12px;
}

/* Messages and reviews */
.wcl-message-panel,
.wcl-report-box,
.wcl-cleaner-list,
.wcl-review-box {
    margin-top: 17px;
    border-top: 1px solid var(--wcl-border);
    padding-top: 15px;
}

.wcl-message-thread,
.wcl-message-summary-list,
.wcl-review-list {
    display: grid;
    gap: 10px;
    margin: 12px 0;
}

.wcl-message,
.wcl-message-summary-item,
.wcl-review-item {
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-md);
    padding: 13px;
    background: #FFFFFF;
}

.wcl-message-mine {
    margin-left: 22px;
    background: #F0F9FF;
    border-color: #BAE6FD;
}

.wcl-message-theirs {
    margin-right: 22px;
    background: #F8FAFC;
}

.wcl-message-meta,
.wcl-message-summary-item span,
.wcl-review-item span {
    color: var(--wcl-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.wcl-message-summary-item p,
.wcl-review-item p {
    margin: 6px 0;
}

.wcl-message-form {
    padding: 14px;
    margin-top: 10px;
}

.wcl-message-form label {
    margin: 0 0 10px;
}

.wcl-compact-form {
    padding: 16px;
    margin-top: 12px;
}

.wcl-compact-form label {
    margin: 10px 0;
}

.wcl-customer-actions,
.wcl-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 12px 0;
}

.wcl-inline-form {
    margin: 0;
}

.wcl-admin-quality {
    color: var(--wcl-muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Customer dashboard request cards */
.wcl-customer-request-card .wcl-cleaner-list h4,
.wcl-review-box h4 {
    margin: 0 0 10px;
    color: var(--wcl-navy);
}

/* Mobile */
@media (max-width: 980px) {
    .wcl-stat-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .wcl-dashboard-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .wcl-wrapper {
        margin: 22px auto;
        padding: 0 14px;
    }

    .wcl-dashboard-header,
    .wcl-panel-heading,
    .wcl-profile-card-header {
        display: block;
    }

    .wcl-dashboard-actions,
    .wcl-primary-link {
        margin-top: 13px;
    }

    .wcl-stat-grid,
    .wcl-lead-grid,
    .wcl-credit-packages {
        grid-template-columns: 1fr;
    }

    .wcl-lead-details {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .wcl-form button,
    .wcl-locked-box button,
    .wcl-inline-form button,
    .wcl-customer-actions button,
    .wcl-compact-form button,
    .wcl-button-link {
        width: 100%;
    }

    .wcl-filter-bar label {
        width: 100%;
    }
}

/* My Local Window Cleaner homepage shortcode */
.wcl-home {
    max-width: 1220px;
}

.wcl-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
    gap: 28px;
    align-items: center;
    overflow: hidden;
    padding: clamp(28px, 6vw, 62px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.24), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 50%, #FFFFFF 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

.wcl-home-logo {
    width: min(420px, 96%);
    max-height: 120px;
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.wcl-home-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: var(--wcl-navy);
    font-size: clamp(40px, 6vw, 76px);
    letter-spacing: -0.065em;
    line-height: 0.97;
}

.wcl-home-hero p {
    max-width: 640px;
    color: var(--wcl-muted);
    font-size: clamp(17px, 2vw, 21px);
}

.wcl-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.wcl-home-card {
    position: relative;
    padding: 24px;
    border: 1px solid #BAE6FD;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--wcl-shadow);
    backdrop-filter: blur(10px);
}

.wcl-home-card h3 {
    margin-top: 16px;
}

.wcl-home-steps,
.wcl-home-split {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.wcl-home-steps {
    grid-template-columns: repeat(3, 1fr);
}

.wcl-home-steps article,
.wcl-home-split > div {
    padding: 24px;
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-xl);
    background: #FFFFFF;
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-home-steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wcl-blue), var(--wcl-aqua));
    color: #FFFFFF;
    font-weight: 950;
}

.wcl-home-split {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .wcl-home-hero,
    .wcl-home-steps,
    .wcl-home-split {
        grid-template-columns: 1fr;
    }
}

/* Launch-readiness refinements */
.wcl-profile-photo {
    width: 74px;
    height: 74px;
    margin: 0 0 14px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--wcl-border);
    background: var(--wcl-soft-blue);
    box-shadow: var(--wcl-shadow-sm);
}

.wcl-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcl-form input[type="file"] {
    padding: 10px;
    background: #FFFFFF;
}

.wcl-locked-box button[disabled],
.wcl-credit-package button[disabled],
.wcl-form button[disabled] {
    cursor: not-allowed;
    opacity: .6;
    filter: grayscale(.2);
}

@media (max-width: 560px) {
    .wcl-dashboard-header,
    .wcl-panel-heading,
    .wcl-profile-card-header {
        align-items: stretch;
    }

    .wcl-credit-price {
        font-size: 26px;
    }

    .wcl-profile-photo {
        width: 64px;
        height: 64px;
    }
}

.wcl-fieldset {
    margin: 16px 0;
    padding: 16px;
    border: 1px solid var(--wcl-border);
    border-radius: var(--wcl-radius-md);
    background: var(--wcl-bg-soft);
}

.wcl-fieldset legend {
    padding: 0 6px;
    font-weight: 800;
    color: var(--wcl-navy);
}


/* v1.0.67 auth-card spacing fix */
.wcl-auth-card .wcl-brand-logo {
    margin-bottom: 28px;
}

.wcl-auth-card .wcl-eyebrow,
.wcl-auth-card .wcl-pill,
.wcl-auth-card .wcl-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px 0;
    line-height: 1.2;
    vertical-align: top;
    white-space: normal;
}

.wcl-auth-card h1,
.wcl-auth-card h2,
.wcl-auth-card h3 {
    display: block;
    clear: both;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    line-height: 1.08 !important;
}

.wcl-auth-card .wcl-eyebrow + h1,
.wcl-auth-card .wcl-eyebrow + h2,
.wcl-auth-card .wcl-pill + h1,
.wcl-auth-card .wcl-pill + h2,
.wcl-auth-card .wcl-badge + h1,
.wcl-auth-card .wcl-badge + h2 {
    margin-top: 0 !important;
}

.wcl-auth-card p {
    margin-top: 0;
}

@media (max-width: 640px) {
    .wcl-auth-card .wcl-eyebrow,
    .wcl-auth-card .wcl-pill,
    .wcl-auth-card .wcl-badge {
        margin-bottom: 14px;
    }

    .wcl-auth-card h1,
    .wcl-auth-card h2 {
        font-size: clamp(30px, 9vw, 44px) !important;
        letter-spacing: -0.045em !important;
    }
}


/* v1.0.67 definitive cleaner sign-up heading spacing fix */
.wcl-auth-card .wcl-eyebrow {
    display: table !important;
    clear: both !important;
    float: none !important;
    margin: 0 0 22px 0 !important;
    line-height: 1.2 !important;
}

.wcl-auth-card .wcl-auth-title,
.wcl-auth-card .wcl-eyebrow + h1,
.wcl-auth-card .wcl-eyebrow + h2 {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    line-height: 1.08 !important;
}

.wcl-auth-card .wcl-auth-title::before,
.wcl-auth-card .wcl-eyebrow + h1::before,
.wcl-auth-card .wcl-eyebrow + h2::before {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

.wcl-auth-card .wcl-eyebrow + h1,
.wcl-auth-card .wcl-eyebrow + h2 {
    margin-top: 0 !important;
}


/* v1.0.67 auth-card cleanup: remove duplicate brand badge spacing issues */
.wcl-auth-card .wcl-brand-logo {
    margin: 0 auto 34px !important;
    text-align: center !important;
}

.wcl-auth-card .wcl-brand-logo img {
    display: inline-block !important;
    width: min(420px, 96%) !important;
    max-height: 118px !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.wcl-auth-card .wcl-auth-title,
.wcl-auth-card h1,
.wcl-auth-card h2 {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    line-height: 1.08 !important;
}

.wcl-auth-card > p,
.wcl-auth-card .wcl-auth-title + p,
.wcl-auth-card h1 + p,
.wcl-auth-card h2 + p {
    margin-top: 0 !important;
}

@media (max-width: 640px) {
    .wcl-auth-card .wcl-brand-logo {
        margin-bottom: 26px !important;
    }

    .wcl-auth-card .wcl-brand-logo img {
        width: min(330px, 96%) !important;
        max-height: 96px !important;
    }
}


/* v1.0.67 remove repeated brand pills/badges from public UI */
.wcl-wrap .wcl-eyebrow:empty,
.wcl-wrap .wcl-pill:empty,
.wcl-wrap .wcl-badge:empty,
.wcl-auth-card .wcl-eyebrow,
.wcl-auth-card .wcl-pill,
.wcl-auth-card .wcl-badge,
.wcl-dashboard-hero > .wcl-eyebrow,
.wcl-dashboard-hero > .wcl-pill,
.wcl-dashboard-hero > .wcl-badge,
.wcl-hero > .wcl-eyebrow,
.wcl-hero > .wcl-pill,
.wcl-hero > .wcl-badge {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

.wcl-auth-card .wcl-brand-logo {
    margin: 0 auto 34px !important;
}

.wcl-auth-card h1,
.wcl-auth-card h2,
.wcl-auth-card .wcl-auth-title {
    clear: both !important;
    display: block !important;
    margin-top: 0 !important;
}


/* v1.0.67 remove CSS-generated brand pill labels */
.wcl-form h2:first-child::before,
.wcl-auth-card h2::before,
.wcl-auth-card h1::before,
.wcl-marketplace h2::before,
.wcl-marketplace h1::before,
.wcl-cleaner-dashboard > .wcl-dashboard-header h2::before,
.wcl-cleaner-dashboard > .wcl-dashboard-header h1::before,
.wcl-customer-dashboard > .wcl-dashboard-header h2::before,
.wcl-customer-dashboard > .wcl-dashboard-header h1::before,
.wcl-dashboard-header h1::before,
.wcl-dashboard-header h2::before,
.wcl-hero h1::before,
.wcl-hero h2::before {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}


/* v1.0.67 checkbox rendering fix
   Prevent theme checkbox styling from pushing ticks outside the box. */
.wcl-wrap input[type="checkbox"],
.wcl-auth-card input[type="checkbox"],
.wcl-form input[type="checkbox"],
.wcl-card input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    position: relative !important;
    display: inline-grid !important;
    place-content: center !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    margin: 0 12px 0 0 !important;
    padding: 0 !important;
    flex: 0 0 22px !important;
    vertical-align: middle !important;
    border: 1.5px solid #BFD7EA !important;
    border-radius: 7px !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transform: none !important;
}

.wcl-wrap input[type="checkbox"]::before,
.wcl-auth-card input[type="checkbox"]::before,
.wcl-form input[type="checkbox"]::before,
.wcl-card input[type="checkbox"]::before {
    content: "" !important;
    display: block !important;
    width: 6px !important;
    height: 11px !important;
    border: solid #FFFFFF !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) scale(0) !important;
    transform-origin: center center !important;
    margin: -2px 0 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wcl-wrap input[type="checkbox"]:checked,
.wcl-auth-card input[type="checkbox"]:checked,
.wcl-form input[type="checkbox"]:checked,
.wcl-card input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #0284C7, #06B6D4) !important;
    border-color: #0284C7 !important;
}

.wcl-wrap input[type="checkbox"]:checked::before,
.wcl-auth-card input[type="checkbox"]:checked::before,
.wcl-form input[type="checkbox"]:checked::before,
.wcl-card input[type="checkbox"]:checked::before {
    transform: rotate(45deg) scale(1) !important;
}

.wcl-wrap input[type="checkbox"]:focus,
.wcl-auth-card input[type="checkbox"]:focus,
.wcl-form input[type="checkbox"]:focus,
.wcl-card input[type="checkbox"]:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.14) !important;
}

.wcl-wrap label:has(input[type="checkbox"]),
.wcl-auth-card label:has(input[type="checkbox"]),
.wcl-form label:has(input[type="checkbox"]),
.wcl-card label:has(input[type="checkbox"]) {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    line-height: 1.45 !important;
}

.wcl-wrap label input[type="checkbox"] + span,
.wcl-auth-card label input[type="checkbox"] + span,
.wcl-form label input[type="checkbox"] + span,
.wcl-card label input[type="checkbox"] + span {
    display: inline-block !important;
}



/* v1.0.67 radius filter/profile fields */
.wcl-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wcl-filter-bar select {
    min-height: 46px;
}

@media (max-width: 700px) {
    .wcl-two-col {
        grid-template-columns: 1fr;
    }
}


/* v1.0.67 radius filter clarity */
.wcl-notice.wcl-warning {
    background: #FFFBEB;
    border-color: #FCD34D;
    color: #92400E;
}


/* v1.0.67 simplified nearest-first lead filtering */
.wcl-radius-bar {
    align-items: end;
}

.wcl-radius-bar label {
    max-width: 260px;
}


/* v1.0.67 cleaner profile simplification */
.wcl-coverage-note {
    color: #64748B;
    font-size: 14px;
}


/* v1.0.67 mobile form action reliability without changing button colours */
.wcl-customer-actions .wcl-inline-form,
.wcl-customer-actions .wcl-customer-action-form {
    position: relative !important;
    z-index: 5 !important;
    pointer-events: auto !important;
}

.wcl-customer-actions button {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(2, 132, 199, 0.18) !important;
}

@media (max-width: 700px) {
    .wcl-customer-actions {
        gap: 10px !important;
    }

    .wcl-customer-actions .wcl-inline-form,
    .wcl-customer-actions .wcl-customer-action-form {
        width: 100% !important;
    }

    .wcl-customer-actions button,
    .wcl-customer-actions .wcl-button-link {
        width: 100% !important;
        min-height: 52px !important;
        transform: none !important;
    }
}


/* v1.0.67 mobile-safe customer edit save */
.wcl-customer-edit-form button[type="submit"] {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    position: relative !important;
    z-index: 5 !important;
}

@media (max-width: 700px) {
    .wcl-customer-edit-form button[type="submit"] {
        width: 100% !important;
        min-height: 52px !important;
        transform: none !important;
    }
}

/* v1.0.67 direct email reply focus */
.wcl-message-panel.wcl-message-focus {
    border: 2px solid #7DD3FC;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.14);
    scroll-margin-top: 90px;
}


/* v1.0.67 mobile-device layout fix
   Some email/in-app browsers report a fake desktop viewport on phones, so normal
   max-width media queries do not always fire. WordPress mobile detection adds
   body.wcl-mobile-device, and these rules apply the same one-column mobile layout. */
body.wcl-mobile-device .wcl-wrapper {
    margin: 22px auto !important;
    padding: 0 14px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body.wcl-mobile-device .wcl-dashboard-header,
body.wcl-mobile-device .wcl-panel-heading,
body.wcl-mobile-device .wcl-profile-card-header {
    display: block !important;
}

body.wcl-mobile-device .wcl-dashboard-actions,
body.wcl-mobile-device .wcl-primary-link {
    margin-top: 13px !important;
}

body.wcl-mobile-device .wcl-stat-grid,
body.wcl-mobile-device .wcl-lead-grid,
body.wcl-mobile-device .wcl-credit-packages,
body.wcl-mobile-device .wcl-two-col,
body.wcl-mobile-device .wcl-dashboard-two-col,
body.wcl-mobile-device .wcl-home-hero,
body.wcl-mobile-device .wcl-home-steps,
body.wcl-mobile-device .wcl-home-split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.wcl-mobile-device .wcl-lead-card,
body.wcl-mobile-device .wcl-stat-card,
body.wcl-mobile-device .wcl-dashboard-panel,
body.wcl-mobile-device .wcl-credit-package,
body.wcl-mobile-device .wcl-profile-card,
body.wcl-mobile-device .wcl-customer-box,
body.wcl-mobile-device .wcl-locked-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

body.wcl-mobile-device .wcl-lead-details {
    grid-template-columns: 1fr !important;
    gap: 3px !important;
}

body.wcl-mobile-device .wcl-card-topline {
    display: block !important;
}

body.wcl-mobile-device .wcl-form button,
body.wcl-mobile-device .wcl-locked-box button,
body.wcl-mobile-device .wcl-inline-form button,
body.wcl-mobile-device .wcl-customer-actions button,
body.wcl-mobile-device .wcl-compact-form button,
body.wcl-mobile-device .wcl-button-link,
body.wcl-mobile-device .wcl-primary-link {
    width: 100% !important;
    text-align: center !important;
}

body.wcl-mobile-device .wcl-filter-bar label,
body.wcl-mobile-device .wcl-customer-actions .wcl-inline-form,
body.wcl-mobile-device .wcl-customer-actions .wcl-customer-action-form {
    width: 100% !important;
}

body.wcl-mobile-device .wcl-customer-actions {
    gap: 10px !important;
}

body.wcl-mobile-device .wcl-customer-actions button,
body.wcl-mobile-device .wcl-customer-actions .wcl-button-link,
body.wcl-mobile-device .wcl-customer-edit-form button[type="submit"] {
    width: 100% !important;
    min-height: 52px !important;
    transform: none !important;
}

body.wcl-mobile-device .wcl-message-panel,
body.wcl-mobile-device .wcl-message-thread,
body.wcl-mobile-device .wcl-message {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
}
/* v1.0.67 real mobile layout fix
   Some email/in-app browsers on phones report a desktop-width viewport, so
   @media (max-width: 700px) does not fire. These rules use actual device/touch
   capability so the dashboard behaves like normal mobile on phones. */
@media only screen and (max-device-width: 900px), only screen and (hover: none) and (pointer: coarse) {
body .wcl-wrapper {
        margin: 22px auto !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    body .wcl-dashboard-header,
    body .wcl-panel-heading,
    body .wcl-profile-card-header {
        display: block !important;
    }

    body .wcl-dashboard-actions,
    body .wcl-primary-link {
        margin-top: 13px !important;
    }

    body .wcl-stat-grid,
    body .wcl-lead-grid,
    body .wcl-credit-packages,
    body .wcl-two-col,
    body .wcl-dashboard-two-col,
    body .wcl-home-hero,
    body .wcl-home-steps,
    body .wcl-home-split {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body .wcl-lead-card,
    body .wcl-stat-card,
    body .wcl-dashboard-panel,
    body .wcl-credit-package,
    body .wcl-profile-card,
    body .wcl-customer-box,
    body .wcl-locked-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body .wcl-card-topline,
    body .wcl-dashboard-header > div {
        display: block !important;
    }

    body .wcl-lead-details {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3px !important;
    }

    body .wcl-form button,
    body .wcl-locked-box button,
    body .wcl-inline-form button,
    body .wcl-customer-actions button,
    body .wcl-compact-form button,
    body .wcl-button-link,
    body .wcl-primary-link {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    body .wcl-filter-bar label,
    body .wcl-customer-actions .wcl-inline-form,
    body .wcl-customer-actions .wcl-customer-action-form {
        width: 100% !important;
    }

    body .wcl-customer-actions {
        gap: 10px !important;
    }

    body .wcl-customer-actions button,
    body .wcl-customer-actions .wcl-button-link,
    body .wcl-customer-edit-form button[type="submit"] {
        width: 100% !important;
        min-height: 52px !important;
        transform: none !important;
    }

    body .wcl-message-panel,
    body .wcl-message-thread,
    body .wcl-message {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
    }
}


/* v1.0.67 mobile UI polish
   Launch polish for logged-in account buttons and chat bubbles. */
.wcl-auth-card .wcl-button-link,
.wcl-auth-card a.wcl-button-link {
    margin: 0 8px 8px 0;
    white-space: nowrap;
}

.wcl-message-panel {
    overflow: hidden;
}

.wcl-message-thread {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.wcl-message {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wcl-message-mine,
.wcl-message-theirs {
    max-width: calc(100% - 22px);
}

@media (max-width: 700px), only screen and (max-device-width: 900px), only screen and (hover: none) and (pointer: coarse) {
    .wcl-auth-wrapper {
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        box-sizing: border-box !important;
    }

    .wcl-auth-card {
        padding: 24px 20px !important;
        border-radius: 24px !important;
    }

    .wcl-auth-card .wcl-brand-logo {
        margin-bottom: 22px !important;
    }

    .wcl-auth-card .wcl-brand-logo img {
        width: min(310px, 100%) !important;
        max-height: 92px !important;
    }

    .wcl-auth-card h1,
    .wcl-auth-card h2,
    .wcl-auth-card .wcl-auth-title {
        font-size: clamp(30px, 9vw, 42px) !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
    }

    .wcl-auth-card p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .wcl-auth-card .wcl-button-link,
    .wcl-auth-card a.wcl-button-link {
        display: flex !important;
        width: 100% !important;
        min-height: 52px !important;
        margin: 8px 0 !important;
        padding: 14px 16px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .wcl-message-panel {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .wcl-message-thread {
        display: grid !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .wcl-message {
        width: auto !important;
        max-width: 92% !important;
        padding: 12px 13px !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .wcl-message-mine {
        justify-self: end !important;
        margin-left: 8% !important;
        margin-right: 0 !important;
    }

    .wcl-message-theirs {
        justify-self: start !important;
        margin-left: 0 !important;
        margin-right: 8% !important;
    }

    .wcl-message-meta {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .wcl-message-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px !important;
    }
}


/* v1.0.67 scope mobile CSS so theme header/logo/sticky are not affected */
@media only screen and (max-device-width: 900px), only screen and (hover: none) and (pointer: coarse), (max-width: 700px) {
    .wcl-wrapper,
    .wcl-wrapper *,
    .wcl-auth-wrapper,
    .wcl-auth-wrapper *,
    .wcl-home,
    .wcl-home * {
        box-sizing: border-box;
    }

    .wcl-wrapper,
    .wcl-auth-wrapper,
    .wcl-home {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .wcl-wrapper img,
    .wcl-auth-wrapper img,
    .wcl-home img {
        max-width: 100% !important;
        height: auto !important;
    }
}
