:root{
  --bg:#f7fafb;
  --card:#ffffff;
  --line:#e7eef1;
  --line-strong:#d9e5ea;
  --text:#102335;
  --muted:#6d7f8d;
  --green:#19b36b;
  --green-dark:#0d8c55;
  --green-soft:#eaf9f1;
  --coral:#ff4747;
  --coral-dark:#e53939;
  --coral-soft:#fff1f1;
  --blue:#2f80ed;
  --shadow:0 16px 38px rgba(16,35,53,.06);
  --shadow-soft:0 8px 22px rgba(16,35,53,.045);
  --radius:22px;
  --radius-sm:13px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0,#f8fbfc 280px,#f6fafb 100%);
  font-size:15px;
  line-height:1.45;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
.shell{width:min(100% - 64px,1128px);margin-inline:auto}
.topbar{
  height:72px;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:20;
}
.nav-shell{height:72px;display:grid;grid-template-columns:210px minmax(280px,430px) 1fr auto;align-items:center;gap:28px}
.brand{display:flex;align-items:center;height:42px}
.brand img{width:200px;height:auto;display:block}
.global-search{
  height:48px;
  display:flex;align-items:center;gap:12px;
  padding:0 16px 0 18px;
  border:1px solid var(--line-strong);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 24px rgba(16,35,53,.04);
}
.global-search svg,.side-search svg{width:21px;height:21px;stroke:var(--coral);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.global-search input,.side-search input{border:0;outline:0;width:100%;font-size:14px;color:var(--text);background:transparent}
.global-search input::placeholder,.side-search input::placeholder{color:#8fa0aa}
.main-nav{display:flex;justify-content:flex-end;align-items:center;gap:30px;font-weight:700;font-size:14px;color:#263a4a}
.main-nav a{position:relative;padding:27px 0 24px}
.main-nav a.active{color:var(--coral)}
.main-nav a.active:after{content:"";position:absolute;left:0;right:0;bottom:14px;height:3px;border-radius:999px;background:var(--coral)}
.login-link{display:flex;align-items:center;gap:7px;font-weight:700;font-size:14px;color:#24384a}
.login-link svg{width:24px;height:24px;stroke:#223447;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero-area{padding:26px 0 18px}
.breadcrumbs{display:flex;align-items:center;gap:12px;color:#7d8c98;font-size:13px;margin:0 0 28px}
.breadcrumbs a{color:#667887}
.title-grid{display:grid;grid-template-columns:1fr auto;align-items:center;gap:24px;margin-bottom:30px}
h1{font-size:50px;line-height:1.05;margin:0 0 12px;letter-spacing:-.04em;color:#0c2135;font-weight:850}
.title-grid p{margin:0;color:#5d7180;font-size:17px}
.count-card{min-width:234px;display:grid;grid-template-columns:56px 1fr;grid-template-rows:auto auto;align-items:center;gap:1px 16px;background:#fff;border:1px solid var(--line-strong);border-radius:20px;padding:20px 24px;box-shadow:var(--shadow-soft)}
.count-card .count-icon{grid-row:1/3;width:52px;height:52px;border-radius:18px;background:var(--green-soft);display:grid;place-items:center;color:var(--green)}
.count-card svg{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.count-card span:not(.count-icon){font-size:13px;color:#748896;font-weight:700}
.count-card strong{font-size:22px;letter-spacing:-.03em;color:#13283a}
.quick-areas{background:#fff;border:1px solid var(--line);border-radius:22px;padding:26px 24px;display:grid;grid-template-columns:repeat(6,1fr);gap:8px;box-shadow:var(--shadow-soft)}
.area-item{display:grid;justify-items:center;gap:13px;text-align:center;font-weight:800;color:#183044;font-size:14px;padding:6px 6px 2px;border-radius:18px;transition:.15s ease}
.area-item:hover{background:#f8fbfb;transform:translateY(-1px)}
.circle{width:72px;height:72px;border-radius:28px;display:grid;place-items:center;background:#ecf9f3;color:var(--green)}
.circle svg{width:34px;height:34px;stroke:currentColor;fill:none;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round}
.circle.warm{background:#fff4ec;color:#c46b2b}.circle.coral{background:#fff1f1;color:var(--coral)}.circle.rose{background:#fff3f5;color:#f45165}.circle.violet{background:#f2f1ff;color:#6264e8}
.directory-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:28px;padding:12px 0 42px;align-items:start}
.filters-card,.results-panel{background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow-soft)}
.filters-card{padding:28px 22px;position:sticky;top:94px;max-height:calc(100vh - 112px);overflow:auto;scrollbar-width:thin}
.side-search{height:48px;display:flex;flex-direction:row-reverse;align-items:center;gap:10px;padding:0 14px;border:1px solid var(--line-strong);border-radius:12px;background:#fff;margin-bottom:24px}
.side-search svg{stroke:#78909c;width:20px;height:20px}.side-search input{font-size:13px}
.filter-group{border-top:1px solid var(--line);padding-top:21px;margin-top:19px}
.filter-group:first-of-type{border-top:0;margin-top:0;padding-top:0}
.filter-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;font-size:16px;font-weight:850;color:#12283a}
.filter-heading span{color:#2a4051;font-size:16px}
.check-row{height:38px;display:flex;align-items:center;gap:10px;border:1px solid var(--line-strong);border-radius:10px;padding:0 12px;margin-bottom:8px;font-weight:650;color:#324b5d;background:#fff;cursor:pointer;transition:.15s ease}
.check-row:hover{border-color:#cbe6d9;background:#fbfffd}
.check-row input{appearance:none;width:18px;height:18px;border:2px solid #d7e2e7;border-radius:5px;background:#fff;margin:0;display:grid;place-items:center;flex:0 0 auto}
.check-row input:checked{border-color:var(--green);background:var(--green)}
.check-row input:checked:after{content:"✓";color:white;font-size:13px;font-weight:900;line-height:1}
.check-row.active{background:#fbfffd;border-color:#c6ebd8;color:var(--green-dark);box-shadow:0 0 0 1px rgba(25,179,107,.08) inset}
.star{color:#f6a900}.show-more{display:inline-flex;margin:2px 0 0;color:var(--green);font-weight:800;font-size:13px}
.toggle-row{height:38px;display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:8px;color:#31495a;font-weight:650}
.toggle-row input{appearance:none;width:42px;height:24px;border-radius:999px;background:#dfe8ec;position:relative;outline:0;cursor:pointer;transition:.15s ease}
.toggle-row input:before{content:"";position:absolute;width:18px;height:18px;border-radius:50%;left:3px;top:3px;background:#fff;box-shadow:0 2px 6px rgba(16,35,53,.15);transition:.15s ease}
.toggle-row input:checked{background:var(--green)}.toggle-row input:checked:before{left:21px}
.apply-btn,.clear-btn{width:100%;height:52px;border-radius:12px;font-weight:850;border:0;cursor:pointer;margin-top:15px}
.apply-btn{background:linear-gradient(135deg,#ff4a4a,#ff3636);color:white;box-shadow:0 10px 20px rgba(255,71,71,.18)}
.clear-btn{background:#fff;color:#395066;border:1px solid var(--line-strong);margin-top:10px}
.results-panel{padding:26px 24px 24px;overflow:hidden}
.selected-toolbar{display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center;margin-bottom:20px}
.chips{display:flex;gap:10px;flex-wrap:wrap}.chips button{height:40px;padding:0 15px;border:1px solid #bfead3;background:#f4fff9;color:var(--green-dark);border-radius:10px;font-weight:800;cursor:pointer}.chips span{font-size:17px;margin-left:7px;color:var(--green)}
.sort-control{display:flex;align-items:center;gap:12px;font-weight:700;color:#708393}.sort-control button{height:42px;padding:0 15px 0 18px;border:1px solid var(--line-strong);background:#fff;border-radius:12px;color:#2b4051;font-weight:800;display:flex;align-items:center;gap:14px}.sort-control svg{width:18px;height:18px;stroke:#607481;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.results-count{font-size:16px;color:#5e7180;margin-bottom:22px}.results-count strong{font-size:19px;color:#13283a}
.doctor-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.doctor-card{display:grid;grid-template-columns:118px 1fr;gap:18px;padding:18px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 8px 22px rgba(16,35,53,.035);min-height:274px;transition:.16s ease;position:relative;overflow:hidden}
.doctor-card:hover{border-color:#cfe6da;box-shadow:0 18px 36px rgba(16,35,53,.08);transform:translateY(-2px)}
.portrait{width:118px;height:154px;object-fit:cover;object-position:50% 28%;border-radius:13px;background:#f0f4f6;border:1px solid #e3eaee;display:block}
.doctor-content{display:flex;flex-direction:column;min-width:0}
.doctor-content h2{font-size:22px;line-height:1.16;letter-spacing:-.025em;margin:3px 0 8px;color:#13283a;font-weight:850}
.specialty{align-self:flex-start;background:var(--green-soft);color:var(--green-dark);font-weight:850;font-size:13px;border-radius:9px;padding:6px 10px;margin-bottom:11px}
.meta{display:flex;align-items:center;gap:8px;margin:0 0 10px;color:#516879;font-weight:650;font-size:13px}.meta svg{width:17px;height:17px;stroke:#5d7382;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.mini-tags{display:flex;flex-wrap:wrap;gap:7px;margin:1px 0 12px}.mini-tags span{border:1px solid var(--line-strong);color:#314b5d;background:#fff;border-radius:8px;padding:5px 8px;font-weight:700;font-size:12px;white-space:nowrap}
.rating{margin:0 0 10px;color:#23394b;font-weight:800;font-size:14px}.rating b{color:var(--coral);font-size:18px;margin-right:6px}.rating span{font-weight:650;color:#6b7f8e}
.status-row{display:flex;flex-wrap:wrap;gap:8px;margin:2px 0 12px}.status-row span{height:28px;display:inline-flex;align-items:center;padding:0 9px;border-radius:8px;font-size:12px;font-weight:800;border:1px solid #dce8ed;color:#426070;background:#fff}.status-row .ok{background:#f3fff8;color:var(--green-dark);border-color:#c8ecd9}.status-row .verified{background:#f7fffb;color:#0d8c55;border-color:#cbeedd}
.card-foot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:10px;padding-top:12px;border-top:1px solid #edf2f4}.next-time{font-size:12px;color:#6f8290;font-weight:750;display:flex;align-items:center;gap:6px}.next-time:before{content:"▣";font-size:12px;color:#7d8e99}.next-time.answer:before{content:"◉";color:var(--green)}.card-foot a{height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0 14px;border:1.5px solid var(--coral);border-radius:10px;color:var(--coral);font-weight:850;font-size:13px;white-space:nowrap;background:#fff7f7}
.pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:28px}.pagination a,.pagination span{min-width:40px;height:40px;border:1px solid var(--line-strong);border-radius:10px;display:grid;place-items:center;padding:0 12px;color:#31495b;background:#fff;font-weight:800;font-size:13px}.pagination a:first-child,.pagination a:last-child{min-width:88px}.pagination .current{background:var(--green);border-color:var(--green);color:#fff;box-shadow:0 8px 16px rgba(25,179,107,.2)}
.footer{background:#fff;border-top:1px solid var(--line);padding:42px 0 18px;margin-top:12px}.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.15fr;gap:62px;padding-bottom:34px}.footer-brand img{width:205px}.footer p{color:#5f7280;margin:14px 0 0}.footer h3{font-size:16px;margin:4px 0 16px}.footer a{display:block;color:#526879;font-weight:650;margin:0 0 10px}.socials{display:flex;gap:10px;margin:22px 0}.socials a{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:#f1f6f8;color:#1c3347;font-size:12px;font-weight:900;margin:0}.gdpr{display:flex;gap:10px;align-items:center;color:#536b7c;font-weight:700;line-height:1.35}.gdpr span{width:28px;height:28px;border-radius:10px;background:var(--green-soft);color:var(--green);display:grid;place-items:center;font-weight:900}.contact-line{font-weight:700;color:#41596b!important}.footer-bottom{border-top:1px solid var(--line);padding-top:18px;display:flex;justify-content:space-between;color:#758895;font-weight:650}.footer-bottom b{color:var(--coral)}
svg{max-width:100%}
@media (max-width:1080px){
  .nav-shell{grid-template-columns:190px 1fr auto;gap:18px}.main-nav{display:none}.directory-layout{grid-template-columns:1fr}.filters-card{position:static;max-height:none}.doctor-grid{grid-template-columns:1fr}.quick-areas{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:720px){
  .shell{width:min(100% - 28px,1128px)}.topbar{height:auto}.nav-shell{height:auto;padding:14px 0;grid-template-columns:1fr;gap:12px}.brand img{width:190px}.login-link{display:none}.title-grid{grid-template-columns:1fr}h1{font-size:40px}.quick-areas{grid-template-columns:repeat(2,1fr);padding:18px 12px}.directory-layout{gap:18px}.results-panel,.filters-card{padding:18px 14px}.selected-toolbar{grid-template-columns:1fr}.doctor-card{grid-template-columns:96px 1fr;gap:14px;padding:14px}.portrait{width:96px;height:128px}.doctor-content h2{font-size:18px}.footer-grid{grid-template-columns:1fr;gap:24px}.footer-bottom{display:grid;gap:10px}.card-foot{display:grid;align-items:start}.card-foot a{width:100%}
}
