:root{
    --bg:#f3f6fb;
    --text:#172033;
    --muted:#64748b;
    --panel:#ffffff;
    --border:#e5eaf1;
    --brand:#0f766e;
    --brand2:#14b8a6;
    --dark:#0f172a;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
}

header{
    position:relative;
    overflow:hidden;
    color:#fff;
    padding:52px 18px 92px;
    background:
        linear-gradient(135deg, rgba(15,118,110,.72), rgba(15,23,42,.82)),
        url('/assets/img/header.jpg') center/cover no-repeat;
}

header::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 82% 12%, rgba(45,212,191,.24), transparent 34%),
        radial-gradient(circle at 18% 18%, rgba(59,130,246,.18), transparent 30%);
    pointer-events:none;
}

header::after{
    content:"";
    position:absolute;
    left:-8%;
    right:-8%;
    bottom:-74px;
    height:92px;
    background:var(--bg);
    border-radius:50% 50% 0 0;
}

.wrap{
    max-width:1220px;
    margin:auto;
    padding:0 18px;
    position:relative;
    z-index:2;
}

.hero{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
}

.breadcrumb{
    font-size:13px;
    margin-bottom:14px;
    opacity:.92;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:900;
}

h1{
    margin:0;
    font-size:48px;
    line-height:1.03;
    letter-spacing:-.06em;
    text-shadow:0 8px 30px rgba(0,0,0,.22);
}

.sub{
    margin-top:14px;
    max-width:780px;
    line-height:1.6;
    font-size:17px;
    opacity:.94;
}

.actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 15px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    color:#fff;
    text-decoration:none;
    font-weight:950;
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 12px 28px rgba(15,23,42,.18);
}

.actions a.primary{
    background:#fff;
    color:var(--brand);
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:-42px;
    position:relative;
    z-index:5;
}

.stat{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(226,232,240,.95);
    border-radius:22px;
    padding:20px;
    box-shadow:0 22px 54px rgba(15,23,42,.16);
    backdrop-filter:blur(8px);
}

.stat b{
    display:block;
    font-size:27px;
    margin-bottom:5px;
    letter-spacing:-.03em;
}

.panel{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:20px;
    margin:24px 0;
    box-shadow:0 18px 42px rgba(15,23,42,.08);
}

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

.panel-head h2{
    margin:0;
    font-size:24px;
    letter-spacing:-.04em;
}

.panel-head p{
    margin:6px 0 0;
    color:var(--muted);
    font-size:14px;
}

.provider-pills,
.city-links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}

.pill,
.city-link{
    display:inline-flex;
    padding:9px 12px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--border);
    color:#334155;
    font-size:13px;
    font-weight:900;
    text-decoration:none;
}

.table-wrap{
    overflow:auto;
    border-radius:18px;
    border:1px solid var(--border);
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:880px;
}

th,td{
    padding:14px;
    border-bottom:1px solid #edf1f7;
    text-align:left;
    font-size:14px;
    vertical-align:top;
}

th{
    background:#f8fafc;
    color:#475569;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:.04em;
}

tr:hover{
    background:#f9fbff;
}

.badge{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.red{background:#fee2e2;color:#991b1b}
.yellow{background:#fef3c7;color:#92400e}
.blue{background:#dbeafe;color:#1e40af}
.green{background:#dcfce7;color:#166534}
.gray{background:#f1f5f9;color:#475569}

a{
    color:var(--brand);
    font-weight:900;
    text-decoration:none;
}

.mobile-list{
    display:none;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:16px;
    margin-bottom:12px;
    box-shadow:0 12px 26px rgba(15,23,42,.07);
}

.card-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.card-title{
    font-weight:950;
    font-size:18px;
}

.card-row{
    margin-top:11px;
    line-height:1.45;
}

.empty{
    padding:22px;
    border-radius:18px;
    background:#fff7ed;
    border:1px solid #fed7aa;
    color:#9a3412;
}

.footer{
    color:var(--muted);
    font-size:12px;
    margin:14px 0 34px;
}

@media(max-width:900px){
    header{
        padding:38px 14px 72px;
    }

    .hero{
        flex-direction:column;
    }

    h1{
        font-size:34px;
    }

    .sub{
        font-size:15px;
    }

    .actions{
        justify-content:flex-start;
        width:100%;
    }

    .actions a{
        flex:1;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .panel-head{
        flex-direction:column;
    }

    .table-wrap{
        display:none;
    }

    .mobile-list{
        display:block;
    }
}

@media(max-width:520px){
    header{
        padding:30px 10px 64px;
    }

    .wrap{
        padding:0 12px;
    }

    h1{
        font-size:30px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .stat b{
        font-size:24px;
    }
}
