:root{
  --font-body:"Manrope", "Segoe UI", sans-serif;
  --font-display:"Unbounded", "Manrope", sans-serif;
  --bg:#0b0b0b;
  --surface:#141414;
  --surface-strong:#1f1f1f;
  --text:#f5f5f5;
  --muted:#9b9b9b;
  --brand:#ff9b00;
  --brand-strong:#ff7a00;
  --accent:#ff9b00;
  --border:#2a2a2a;
  --shadow-1:0 12px 30px rgba(0,0,0,.45);
  --shadow-2:0 22px 60px rgba(0,0,0,.6);
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;
  --transition:.25s ease;
  --grid-gap:20px;
  --success:#1aa06d;
  --warning:#c98a2a;
  --danger:#c33b3b;
  --service-photo-bg:#f3f3f3;
  --service-photo-border:#e4e4e4;
}

@media (prefers-color-scheme: dark){
  :root{
    --bg:#0b0b0b;
    --surface:#141414;
    --surface-strong:#1f1f1f;
    --text:#f5f5f5;
    --muted:#9b9b9b;
    --brand:#ff9b00;
    --brand-strong:#ff7a00;
    --accent:#ff9b00;
    --border:#2a2a2a;
    --shadow-1:0 12px 30px rgba(0,0,0,.45);
    --shadow-2:0 22px 60px rgba(0,0,0,.6);
  }
}

html[data-theme="light"]{
  --bg:#f8f8f8;
  --surface:#ffffff;
  --surface-strong:#f1f1f1;
  --text:#111111;
  --muted:#5f5f5f;
  --brand:#ff9b00;
  --brand-strong:#ff7a00;
  --accent:#ff9b00;
  --border:#e2e2e2;
  --shadow-1:0 10px 30px rgba(17,17,17,.08);
  --shadow-2:0 22px 50px rgba(17,17,17,.12);
  --service-photo-bg:#f7f7f7;
  --service-photo-border:#dedede;
}

html[data-theme="dark"]{
  --bg:#0b0b0b;
  --surface:#141414;
  --surface-strong:#1f1f1f;
  --text:#f5f5f5;
  --muted:#9b9b9b;
  --brand:#ff9b00;
  --brand-strong:#ff7a00;
  --accent:#ff9b00;
  --border:#2a2a2a;
  --shadow-1:0 12px 30px rgba(0,0,0,.45);
  --shadow-2:0 22px 60px rgba(0,0,0,.6);
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  line-height:1.5;
}

body::before,
body::after{
  content:"";
  position:fixed;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:50%;
  filter:blur(0px);
  z-index:-1;
  opacity:.4;
}

body::before{
  top:-120px;
  right:-160px;
  background:radial-gradient(circle at center, rgba(255,155,0,.22), transparent 70%);
}

body::after{
  bottom:-160px;
  left:-120px;
  background:radial-gradient(circle at center, rgba(255,122,0,.18), transparent 70%);
}

img{max-width:100%;display:block}
button{font-family:inherit}

a{color:inherit;text-decoration:none}

.icon-sprite{
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.icon{
  width:20px;
  height:20px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:linear-gradient(120deg, #0b0b0b 0%, #171717 100%);
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.6);
  border-bottom:1px solid rgba(255,155,0,.35);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 0;
  max-width:1360px;
  width:100%;
  margin:0 auto;
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
}


.brand{
  font-family:var(--font-display);
  font-size:18px;
  letter-spacing:.5px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
}

.header-region{
  position:relative;
  display:flex;
  align-items:center;
}

.region-selector{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  white-space:nowrap;
  transition:background var(--transition), border-color var(--transition), transform var(--transition);
}

.region-selector .icon{
  width:16px;
  height:16px;
  color:var(--brand);
}

.region-selector:hover{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.4);
}

.region-selector:active{
  transform:scale(.98);
}

.region-selector:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}

.region-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:180px;
  padding:6px;
  border-radius:12px;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow-1);
  display:none;
  z-index:10;
}

.header-region.is-open .region-menu{
  display:block;
}

.region-option{
  width:100%;
  text-align:left;
  padding:8px 10px;
  border-radius:8px;
  border:none;
  background:none;
  color:var(--text);
  cursor:pointer;
}

.region-option:hover{
  background:rgba(255,255,255,.08);
}

.brand-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.4);
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
}

.brand-text{
  letter-spacing:.8px;
  padding:6px 10px;
  border-radius:8px;
  background:var(--brand);
  color:#101010;
}

.field{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  background:var(--surface-strong);
  border-radius:999px;
  border:1px solid transparent;
  flex:1;
  position:relative;
  min-height:44px;
}

.field.is-selected{
  border-color:var(--brand);
  background:var(--surface);
  box-shadow:0 0 0 3px rgba(255,155,0,.2);
}

.field input{
  border:none;
  background:transparent;
  width:100%;
  font-size:14px;
  color:var(--text);
}

.field input:focus{outline:none}

.clear-btn{
  border:none;
  background:transparent;
  width:44px;
  height:44px;
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  cursor:pointer;
  flex:0 0 44px;
}

.clear-btn:hover{
  color:var(--text);
  background:var(--surface);
}

.field.has-value .clear-btn{
  display:inline-flex;
}

.btn{
  border:none;
  border-radius:999px;
  padding:10px 18px;
  font-weight:600;
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition);
  min-height:44px;
}

.btn.primary{
  background:var(--brand);
  color:#101010;
  box-shadow:0 12px 30px rgba(255,155,0,.3);
}

.btn.primary:hover{transform:translateY(-1px)}

.btn.outline{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}

.btn.ghost{
  background:var(--surface-strong);
  color:var(--text);
  border:1px solid var(--border);
}

.btn.link{
  background:none;
  padding:0;
  color:var(--brand);
  font-weight:600;
}

.auth-trigger{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height:44px;
  white-space:nowrap;
}

.auth-trigger:hover{
  transform:translateY(-1px);
  border-color:rgba(255,155,0,.35);
}

.auth-icon{
  width:32px;
  height:32px;
  border-radius:12px;
  background:var(--surface-strong);
  display:grid;
  place-items:center;
}

.auth-label{
  font-size:14px;
}

.auth-trigger.is-auth .auth-icon{
  color:var(--brand);
  background:rgba(255,155,0,.18);
}

.icon-btn{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform var(--transition);
}

.icon-btn:hover{transform:translateY(-1px)}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.site-header .icon{
  color:currentColor;
  filter:drop-shadow(0 0 1px #000);
}


.site-header .icon-btn,
.site-header .auth-trigger,
.site-header .brand{
  color:var(--brand);
  border:1px solid #000;
  background:transparent;
  box-shadow:none;
  transition:color .25s ease, transform .25s ease, filter .25s ease;
}

.site-header .auth-icon,
.site-header .brand-icon{
  background:transparent;
  border:1px solid #000;
}

.site-header .brand-text{
  background:transparent;
  color:var(--brand);
  border:1px solid #000;
}

.site-header .icon-btn:hover,
.site-header .auth-trigger:hover,
.site-header .brand:hover{
  color:var(--brand-strong);
  transform:scale(1.05);
  filter:saturate(1.2);
}

.site-header .icon-btn:active,
.site-header .auth-trigger:active,
.site-header .brand:active{
  transform:scale(.98);
  filter:brightness(.9);
}

.site-header .avatar-btn{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.drawer{
  position:fixed;
  top:0;
  left:0;
  width:min(320px, 82vw);
  height:100%;
  background:var(--surface);
  box-shadow:var(--shadow-2);
  padding:20px;
  transform:translateX(-110%);
  transition:transform var(--transition);
  z-index:30;
}

.drawer.open{transform:translateX(0)}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
}

.drawer-title{
  font-family:var(--font-display);
  font-size:18px;
}

.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nav-link{
  border:1px solid var(--border);
  background:var(--surface-strong);
  padding:12px 14px;
  border-radius:var(--radius-md);
  text-align:left;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-link.active{
  border-color:rgba(255,155,0,.5);
  color:var(--brand);
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  opacity:0;
  pointer-events:none;
  transition:opacity var(--transition);
  z-index:25;
}

.overlay.show{
  opacity:1;
  pointer-events:auto;
}

.modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.4);
  opacity:0;
  pointer-events:none;
  transition:opacity var(--transition);
  z-index:40;
}

.modal.show{
  opacity:1;
  pointer-events:auto;
}

.modal-card{
  width:min(460px, 90vw);
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-2);
  padding:22px;
}

.request-modal{
  background:transparent;
  z-index:60;
}

.request-modal .modal-card{
  background:#ffffff;
  color:#111111;
  border:1px solid var(--brand);
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  transform:scale(.96);
  opacity:0;
  transition:transform .25s ease, opacity .25s ease;
}

.request-card{
  width:min(560px, 90vw);
}

.request-modal.show .modal-card{
  transform:scale(1);
  opacity:1;
}

.request-modal .icon-btn{
  border-color:rgba(17,17,17,.14);
  background:rgba(17,17,17,.05);
  color:#111111;
}

.request-body{
  display:grid;
  gap:14px;
}

.request-progress{
  font-size:12px;
  font-weight:600;
  color:var(--brand);
}

.request-heading{
  font-size:16px;
  font-weight:700;
  color:#111111;
}

.request-question{
  font-size:14px;
  font-weight:600;
  color:#111111;
}

.request-options{
  display:grid;
  gap:10px;
}

.request-option{
  width:100%;
  text-align:left;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.18);
  background:#ffffff;
  color:#111111;
  font-size:14px;
  font-weight:600;
  min-height:44px;
  cursor:pointer;
  transition:color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}

.request-option:hover{
  border-color:rgba(255,155,0,.6);
  background:rgba(255,155,0,.08);
  transform:translateY(-1px);
}

.request-option.is-selected{
  border-color:var(--brand);
  background:rgba(255,155,0,.12);
}

.request-custom,
.request-calendar,
.request-budget,
.request-location{
  display:grid;
  gap:10px;
}

.request-label{
  font-size:13px;
  font-weight:600;
  color:#111111;
}

.request-input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.18);
  background:#ffffff;
  color:#111111;
  font-size:14px;
}

.request-input:focus{
  outline:2px solid rgba(255,155,0,.3);
  border-color:var(--brand);
}

.request-calendar-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.calendar-month{
  display:grid;
  gap:8px;
}

.calendar-title{
  font-size:13px;
  font-weight:700;
  color:#111111;
}

.calendar-week{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:6px;
}

.calendar-label{
  font-size:11px;
  color:#5f5f5f;
  text-align:center;
}

.calendar-days{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:6px;
}

.calendar-cell.is-empty{
  min-height:34px;
}

.calendar-day{
  min-height:34px;
  border-radius:8px;
  border:1px solid rgba(17,17,17,.14);
  background:#ffffff;
  font-size:12px;
  font-weight:600;
  color:#111111;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.calendar-day:hover{
  border-color:rgba(255,155,0,.5);
  background:rgba(255,155,0,.08);
}

.calendar-day.is-selected{
  border-color:var(--brand);
  background:rgba(255,155,0,.15);
}

.calendar-day.is-disabled{
  opacity:.35;
  cursor:default;
}

.request-asap[aria-pressed="true"],
.request-budget-unknown[aria-pressed="true"]{
  border-color:rgba(255,155,0,.6);
  background:rgba(255,155,0,.12);
}

.request-calendar-note,
.request-budget-note,
.request-location-output{
  font-size:12px;
  color:#5f5f5f;
}

.request-map{
  position:relative;
  height:220px;
  border-radius:14px;
  border:1px solid rgba(17,17,17,.18);
  background:linear-gradient(180deg, rgba(255,155,0,.06), rgba(0,0,0,.02));
  cursor:crosshair;
  overflow:hidden;
}

.request-map::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
  background-size:24px 24px;
  opacity:.6;
}

.request-map-pin{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--brand);
  border:2px solid #111111;
  transform:translate(-50%, -100%);
  box-shadow:0 6px 12px rgba(0,0,0,.2);
}

.request-done{
  width:100%;
  margin-top:10px;
}

.request-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.request-actions .btn{
  flex:1;
  min-height:44px;
}

.request-next:disabled{
  opacity:.6;
  cursor:not-allowed;
}

.request-summary{
  border:1px solid rgba(17,17,17,.12);
  border-radius:12px;
  padding:12px;
  display:grid;
  gap:8px;
  background:rgba(255,155,0,.04);
}

.request-summary-title{
  font-size:14px;
  font-weight:700;
}

.request-summary-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
}

.request-summary-row span{
  color:#5f5f5f;
}

.request-success{
  text-align:center;
  border:1px solid rgba(255,155,0,.35);
  border-radius:12px;
  padding:14px;
  background:rgba(255,155,0,.08);
  color:#111111;
}

.request-success-title{
  font-weight:700;
  margin-bottom:6px;
}

.auth-modal{
  width:min(420px, 92vw);
}

.auth-body{
  display:grid;
  gap:12px;
}

.auth-step{
  display:grid;
  gap:12px;
}

.auth-role-grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
}

.auth-role-btn{
  font-size:14px;
  font-weight:700;
}

.auth-role-btn.is-selected{
  border-color:var(--brand);
  box-shadow:0 0 0 2px rgba(255,155,0,.2);
}

.auth-subtitle{
  font-size:13px;
  color:var(--muted);
}

.auth-note{
  min-height:18px;
  font-size:12px;
  color:var(--muted);
  white-space:pre-line;
}

.auth-note.is-success{
  color:var(--success);
}

.auth-note.is-warning{
  color:var(--warning);
}

.auth-form{
  display:grid;
  gap:8px;
}

.auth-field-label{
  font-weight:600;
  font-size:13px;
}

.auth-form input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--text);
  font-size:14px;
}

.auth-form input:focus{
  outline:2px solid rgba(255,155,0,.35);
  border-color:var(--brand);
}

.auth-error{
  min-height:18px;
  font-size:12px;
  color:var(--danger);
}

.auth-back{
  align-self:flex-start;
}


.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}

.modal-title{
  font-size:18px;
  font-weight:700;
}

.settings-group{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
  gap:16px;
}

.settings-label{
  font-weight:600;
}

.segmented{
  display:flex;
  gap:8px;
  background:var(--surface-strong);
  border-radius:999px;
  padding:4px;
  border:1px solid var(--border);
}

.segmented-btn{
  border:none;
  background:transparent;
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}

.segmented-btn.active{
  background:var(--brand);
  color:#101010;
}

.settings-links{
  display:flex;
  gap:16px;
  font-size:13px;
}

.filter-sheet{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:var(--surface);
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow:var(--shadow-2);
  transform:translateY(100%);
  transition:transform var(--transition);
  z-index:35;
  max-height:80vh;
  display:flex;
  flex-direction:column;
}

.filter-sheet.open{transform:translateY(0)}

.filter-sheet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  border-bottom:1px solid var(--border);
}

.filter-sheet-body{
  padding:16px 20px;
  overflow:auto;
}

.filter-sheet-actions{
  padding:16px 20px;
  border-top:1px solid var(--border);
}

.main{
  padding:32px 0 60px;
}

.page{display:none}
.page.active{display:block}

.grid-12{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:var(--grid-gap);
}

.col-3{grid-column:span 3}
.col-4{grid-column:span 4}
.col-5{grid-column:span 5}
.col-6{grid-column:span 6}
.col-7{grid-column:span 7}
.col-8{grid-column:span 8}
.col-12{grid-column:span 12}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-1);
}

.hero{
  align-items:stretch;
  margin-bottom:36px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:1px;
  color:var(--muted);
  text-transform:uppercase;
  margin-bottom:10px;
}

.hero-title{
  font-family:var(--font-display);
  font-size:40px;
  line-height:1.12;
  margin-bottom:14px;
  font-weight:600;
  letter-spacing:-0.2px;
}

.hero-rotator{
  position:relative;
  margin-bottom:20px;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  overflow:visible;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -webkit-user-drag:none;
  width:100%;
  max-width:none;
}

.hero-message{
  transition:opacity .6s ease;
  will-change:opacity;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -webkit-user-drag:none;
  width:100%;
  max-width:none;
}

.hero-message.is-fading{
  opacity:0;
}

.hero-subheading{
  font-size:30px;
  color:var(--text);
  opacity:.9;
  margin-bottom:8px;
  line-height:1.7;
  font-weight:400;
  max-width:none;
}

.hero-subheading + .hero-support-list{
  margin-top:6px;
}

.hero-support-list{
  list-style:none;
  padding:0;
  margin:0 0 6px;
  display:grid;
  gap:4px;
}

.hero-support{
  font-size:26px;
  color:var(--muted);
  margin:0;
  line-height:1.65;
  letter-spacing:.2px;
  font-weight:400;
}

.hero-subheading + .hero-support{
  margin-top:6px;
}

.hero-support--footnote{
  margin-top:8px;
  margin-bottom:0;
}

.hero-subheading:last-child,
.hero-support:last-child{
  margin-bottom:0;
}

.hero-search{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:12px;
}

.search-panel{
  display:grid;
  gap:16px;
  padding:20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 40px rgba(0,0,0,.2);
  overflow:visible;
}

.search-panel--cta{
  place-items:center;
  text-align:center;
  padding:0;
  border:none;
  background:transparent;
  box-shadow:none;
}

.search-cta{
  width:100%;
  max-width:480px;
  font-size:21px;
  height:56px;
  padding:14px 24px;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow:0 16px 34px rgba(255,155,0,.4), 0 8px 18px rgba(0,0,0,.3);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.search-cta:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(255,155,0,.6), 0 14px 28px rgba(0,0,0,.4), 0 0 0 4px rgba(255,155,0,.35);
  filter:brightness(1.1);
}

.search-cta:active{
  transform:translateY(3px);
  box-shadow:0 8px 16px rgba(255,155,0,.28), 0 3px 8px rgba(0,0,0,.22);
  filter:brightness(.96);
}

.search-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.search-panel-title{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:600;
  letter-spacing:.1px;
}

.search-panel-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  color:var(--text);
}

.search-panel-body{
  display:grid;
  gap:14px;
}

.search-panel .field{
  padding:10px 14px;
  min-height:52px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
}

.search-panel .field input{
  font-size:16px;
}

.search-refine{
  display:none;
  gap:10px;
}

.search-refine.is-active{
  display:grid;
}

.search-refine-title{
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:var(--muted);
}

.search-actions{
  display:none;
}

.search-panel.is-ready .search-actions{
  display:flex;
}

.search-actions .btn{
  width:100%;
}

.search-input{
  position:relative;
}

.field-search{
  width:100%;
}

.search-suggestions{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  right:0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow-1);
  padding:6px;
  display:none;
  z-index:10;
  max-height:240px;
  overflow:auto;
}

.search-suggestions--static{
  position:static;
  top:auto;
  left:auto;
  right:auto;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
  max-height:none;
}

.search-suggestions.show{
  display:grid;
  gap:6px;
}

.search-suggestion{
  width:100%;
  text-align:left;
  padding:10px 12px;
  min-height:44px;
  border-radius:10px;
  border:1px solid transparent;
  background:var(--surface-strong);
  cursor:pointer;
  font-weight:600;
  transition:var(--transition);
  color:var(--text);
}

.search-suggestion:hover{
  border-color:rgba(255,155,0,.35);
  background:var(--surface);
}

.search-followup{
  display:none;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background:var(--surface);
}

.search-followup.show{
  display:grid;
}

.followup-title{
  font-weight:600;
}

.followup-options{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.radio-pill{
  position:relative;
}

.radio-pill input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.radio-pill span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  font-weight:600;
  cursor:pointer;
  transition:var(--transition);
}

.radio-pill input:checked + span{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

.search-followup .btn{
  justify-self:flex-start;
}

.hero-note{
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
}

.metrics{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.metric{
  background:var(--surface-strong);
  border-radius:var(--radius-md);
  padding:10px 14px;
  border:1px solid var(--border);
}

.metric-value{
  font-weight:700;
  font-size:18px;
}

.metric-label{
  font-size:12px;
  color:var(--muted);
}

.how-hub{
  margin-top:24px;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

.how-hub + .hero-search{
  margin-top:48px;
}

.how-it-works{
  margin-top:24px;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

.how-it-works *{
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

.how-it-works + .hero-search{
  margin-top:48px;
}

.how-it-works__title{
  font-family:var(--font-display);
  font-size:24px;
  margin-bottom:18px;
  letter-spacing:.1px;
  font-weight:600;
  color:var(--text);
}

.how-it-works__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.how-it-works__item{
  display:flex;
  flex-direction:column;
  gap:7px;
  padding:8px 12px;
  border-radius:var(--radius-lg);
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow-1);
}

.how-it-works__image{
  width:12cm;
  height:12cm;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:center;
  align-self:center;
  transform:scale(1.05);
}

.how-it-works__heading{
  font-weight:700;
  font-size:22px;
  color:var(--text);
}

.how-it-works__text{
  font-size:15px;
  color:var(--muted);
  line-height:1.55;
}

.how-it-works__text em{
  font-style:italic;
  font-weight:500;
  color:inherit;
}

.how-it-works__subtext{
  margin-top:6px;
  font-size:15px;
  line-height:1.55;
  font-style:italic;
  color:var(--text);
}

.hero-search + .section-head{
  margin-top:16px;
}

.how-hub-title{
  font-family:var(--font-display);
  font-size:24.2px;
  margin-bottom:18px;
  letter-spacing:.1px;
  font-weight:600;
  color:var(--text);
}

.how-hub-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.how-hub-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  gap:10px;
  padding:16px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:var(--surface);
  box-shadow:var(--shadow-1);
}

.how-hub-icon{
  display:flex;
  gap:8px;
}

.how-hub-icon-pill{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--brand);
  display:grid;
  place-items:center;
}

.how-hub-heading{
  font-weight:600;
  font-size:16px;
  color:var(--text);
}

.how-hub-text{
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.reveal-on-scroll{
  opacity:0;
  transform:translateY(12px);
}

.reveal-on-scroll.is-visible{
  animation:rise .6s ease forwards;
  animation-delay:calc(var(--i, 0) * 0.08s);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:32px 0 18px;
}

.section-head h2{
  font-size:26px;
  margin-bottom:6px;
}

.section-head p{color:var(--muted)}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:var(--grid-gap);
}

.category-grid{margin-bottom:10px}

.service-item{
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:opacity var(--transition), transform var(--transition);
  height:100%;
}

.service-grid.is-dimmed .service-item{
  opacity:.55;
  transform:scale(.98);
}

.service-grid.is-dimmed .service-item.is-highlight{
  opacity:1;
  transform:scale(1);
}

.service-item.is-highlight .service-tile{
  border-color:rgba(255,255,255,.2);
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

.service-tile{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:8px;
  width:100%;
  height:100%;
  text-align:left;
  padding:18px;
  min-height:180px;
  background:rgba(255,255,255,.02);
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.service-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,11,11,0), rgba(11,11,11,.35));
  opacity:.7;
  z-index:0;
  pointer-events:none;
}

.service-tile > *{
  position:relative;
  z-index:1;
}

.service-tile:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.2);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}

.service-tile:hover .service-arrow{
  color:var(--brand);
}

.service-tile:active{
  transform:scale(.98);
}

.service-tile:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:3px;
}

.service-item[data-category] .service-tile{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-item[data-category] .service-tile::after{
  opacity:.18;
}

.service-item[data-category="electric"] .service-tile{
  background-image:url("elektrika.png.png");
}

.service-item[data-category="plumbing"] .service-tile{
  background-image:url("santehnika.png.png");
}

.service-item[data-category="cleaning"] .service-tile{
  background-image:url("Uborka.png.png");
}

.service-item[data-category="repair"] .service-tile{
  background-image:url("remont.pmg.png");
}

.service-item[data-category="moving"] .service-tile{
  background-image:url("pereezd.png.png");
}

.service-item[data-category="auto"] .service-tile{
  background-image:url("avto.png.png");
}

.service-item[data-category="climate"] .service-tile{
  background-image:url("montaj.png.png");
}

.service-item[data-category="appliances"] .service-tile{
  background-image:url("Bitovie_pr.png.png");
}

.service-item[data-category] .service-media{
  display:none;
}

.service-media{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.service-media--image{
  background-size:cover;
  background-position:center;
  opacity:.24;
  filter:saturate(.9) contrast(1.05);
}

.service-media--icon{
  display:grid;
  place-items:center;
  color:var(--text);
  opacity:.16;
}

.service-media--icon .icon{
  width:140px;
  height:140px;
  stroke-width:1.5;
  transform:scale(1.05);
}

.service-title{
  font-weight:600;
  font-size:16px;
  letter-spacing:.1px;
  max-width:100%;
  overflow:hidden;
  word-break:break-word;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

.service-subtitle{
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
  max-width:100%;
  overflow:hidden;
  word-break:break-word;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

.service-arrow{
  position:absolute;
  top:18px;
  right:18px;
  width:9px;
  height:9px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform var(--transition), color var(--transition);
}

.service-item.is-open .service-arrow{
  transform:rotate(225deg);
  color:var(--brand);
}

.service-item.is-open .service-tile{
  border-color:rgba(255,155,0,.4);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.service-panel{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
  padding:4px 6px 0;
}

.service-item.is-open .service-panel{
  opacity:1;
}

.service-panel-services{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.service-panel-link{
  border:none;
  background:none;
  padding:0;
  text-align:left;
  font-weight:600;
  font-size:14px;
  color:var(--text);
  cursor:pointer;
}

.service-panel-list{
  display:grid;
  gap:8px;
}

.service-subitem{
  width:100%;
  text-align:left;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
  background:transparent;
  font-size:14px;
  min-height:40px;
  cursor:pointer;
  transition:color var(--transition), border-color var(--transition), background var(--transition);
  color:var(--text);
}

.service-subitem:hover{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.04);
}

.service-panel-action{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  border-radius:14px;
  padding:12px;
  font-size:14px;
  font-weight:600;
  color:var(--text);
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  line-height:1.4;
  white-space:normal;
  transition:transform var(--transition), border-color var(--transition), background var(--transition);
}

.service-panel-action::after{
  content:"";
  width:8px;
  height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(-45deg);
  opacity:.5;
}

.service-panel-action[data-category-action="order"]{
  background:var(--brand);
  border-color:transparent;
  color:#101010;
}

.service-panel-action[data-category-action="order"]::after{
  opacity:.6;
}

.service-panel-action:hover{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.04);
  transform:translateY(-1px);
}

.service-panel-action[data-category-action="order"]:hover{
  background:var(--brand-strong);
  border-color:transparent;
}

.steps-grid .card{min-height:180px}

.step-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--surface-strong);
  display:grid;
  place-items:center;
  margin-bottom:12px;
}

.order-panel{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:640px;
}

.order-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.order-label{
  font-size:14px;
  color:var(--muted);
}

.order-input{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  padding:12px 14px;
  color:var(--text);
  font-size:14px;
  resize:vertical;
  min-height:110px;
}

.order-input:focus{
  outline:none;
  border-color:rgba(255,155,0,.4);
  box-shadow:0 0 0 3px rgba(255,155,0,.18);
}

.order-actions{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:10px;
}

.order-cta{
  width:100%;
  height:56px;
  border-radius:16px;
  font-size:19px;
  font-weight:600;
  color:#ffffff;
  background:linear-gradient(180deg, #1b8f5d 0%, #0f5a3b 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28), 0 14px 28px rgba(8,70,46,.45), 0 6px 14px rgba(0,0,0,.3);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.order-cta::before{
  content:"";
  position:absolute;
  inset:2px 2px auto 2px;
  height:48%;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  pointer-events:none;
}

.order-cta:hover{
  transform:translateY(-2px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.3), 0 18px 34px rgba(8,70,46,.5), 0 8px 18px rgba(0,0,0,.32);
  filter:brightness(1.03);
}

.order-cta:active{
  transform:translateY(2px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 8px 16px rgba(8,70,46,.3), 0 3px 8px rgba(0,0,0,.22);
  filter:brightness(.98);
}

.order-cta-note{
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

.page-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}

.page-hero h1{
  font-family:var(--font-display);
  font-size:32px;
  margin-bottom:6px;
}

.page-hero p{color:var(--muted)}

.search-layout{align-items:flex-start}

.filter-panel{
  position:sticky;
  top:100px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.filter-group{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.filter-title{font-weight:700}

.filter-option{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}

.filter-option input{accent-color:var(--brand)}

.results-panel{display:flex;flex-direction:column;gap:16px}

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

.results-meta{
  display:flex;
  align-items:center;
  gap:10px;
}

.pill{
  background:var(--surface-strong);
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 12px;
  font-size:12px;
}

.muted{color:var(--muted);font-size:12px}

[data-auth-protect].is-locked{
  color:var(--muted);
}

[data-auth-action].is-locked{
  box-shadow:none;
  background:var(--surface-strong);
  color:var(--muted);
  border-color:var(--border);
}

.select select{
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 14px;
  background:var(--surface);
  color:var(--text);
}

.results-list{display:grid;gap:14px}

.master-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:start;
}

.master-avatar{
  width:70px;
  height:70px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(255,155,0,.3), rgba(255,122,0,.4));
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:18px;
}

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

.master-name{font-weight:700;font-size:16px}

.master-tags{
  display:flex;
  gap:6px;
  margin-top:6px;
}

.master-status{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
}

.master-status.available{background:rgba(26,160,109,.15);color:var(--success)}

.master-status.busy{background:rgba(195,59,59,.12);color:var(--danger)}

.master-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:12px 0;
  font-size:13px;
}

.stat-item{
  display:flex;
  align-items:center;
  gap:6px;
}

.trust-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  background:var(--surface);
  display:grid;
  place-items:center;
  border:1px solid rgba(255,155,0,.2);
}

.master-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.profile-hero{
  display:flex;
  gap:20px;
  align-items:flex-start;
  margin-bottom:24px;
}

.profile-avatar{
  width:100px;
  height:100px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,155,0,.3), rgba(255,122,0,.4));
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:22px;
}

.profile-info h1{margin-bottom:8px}

.profile-actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

.chip-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}

.chip{
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  background:var(--surface-strong);
}

.chip.trust-high{
  border-color:rgba(26,160,109,.4);
  color:var(--success);
  background:rgba(26,160,109,.12);
}

.chip.trust-mid{
  border-color:rgba(45,130,220,.4);
  color:#2d82dc;
  background:rgba(45,130,220,.12);
}

.chip.trust-low{
  border-color:rgba(195,59,59,.4);
  color:var(--danger);
  background:rgba(195,59,59,.12);
}

.table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}

.table th,
.table td{padding:10px;border-bottom:1px solid var(--border);text-align:left}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:12px;
}

.portfolio-item{
  border-radius:var(--radius-md);
  border:1px solid var(--border);
  padding:12px;
  background:var(--surface-strong);
}

.portfolio-shot{
  height:120px;
  border-radius:12px;
  background:linear-gradient(120deg, rgba(255,155,0,.2), rgba(255,122,0,.25));
  margin-bottom:8px;
}

.review{
  border-bottom:1px solid var(--border);
  padding:12px 0;
}

.review:last-child{border-bottom:none}

.list{display:grid;gap:10px}

.list-item{
  display:flex;
  align-items:center;
  gap:10px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(80px, 1fr));
  gap:12px;
  margin-top:12px;
}

.trust-chip{
  height:64px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  display:grid;
  place-items:center;
  position:relative;
}

.trust-count{
  position:absolute;
  right:8px;
  bottom:6px;
  font-size:10px;
  color:var(--muted);
}

.trust-scale{display:flex;gap:8px;margin-top:12px}

.trust-band{
  flex:1;
  padding:8px 10px;
  border-radius:10px;
  font-size:12px;
  text-align:center;
  color:white;
}

.trust-band.low{background:#7b8790}
.trust-band.mid{background:#2d82dc}
.trust-band.high{background:#1aa06d}

.faq details{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:14px 16px;
  margin-bottom:12px;
}

.faq summary{font-weight:600;cursor:pointer}

.auth{
  display:grid;
  place-items:center;
}

.auth-card{
  max-width:420px;
  width:100%;
  background:var(--surface);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  padding:24px;
  box-shadow:var(--shadow-1);
}

.masters-auth-title{
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  cursor:default;
}

.masters-auth-code{
  display:grid;
  gap:14px;
}

.form{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.form input,
.form select{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  margin-top:6px;
  color:var(--text);
}

.dashboard{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:20px;
  align-items:start;
}

.dashboard-nav{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:16px;
  display:grid;
  gap:10px;
  position:sticky;
  top:100px;
}

.dashboard-nav h3{margin-bottom:10px}

.dashboard-main h1{margin-bottom:12px}

.profile-card{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
  align-items:start;
}

.dashboard-head{
  margin-bottom:16px;
}

.dashboard-head h1{margin-bottom:6px}

.dashboard-cta{
  margin-bottom:16px;
}

.current-request{
  margin-bottom:16px;
}

.empty-card{
  display:grid;
  gap:12px;
  text-align:left;
}

.request-title-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.request-icon{
  width:32px;
  height:32px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  display:grid;
  place-items:center;
  color:var(--brand);
  flex:0 0 auto;
}

.dashboard-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.filter-chips .pill{
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-chips .pill.is-active{
  background:var(--brand);
  color:#101010;
  border-color:transparent;
}

.requests-list{
  display:grid;
  gap:14px;
}

.request-card{
  display:grid;
  gap:10px;
}

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

.request-title{font-weight:600;color:var(--text)}

.request-meta{
  font-size:12px;
  color:var(--muted);
}

.request-text{
  margin:0;
  font-size:14px;
  color:var(--text);
}

.request-info{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:12px;
  color:var(--muted);
}

.request-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.status-pill{
  font-size:11px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface-strong);
}

.status-searching{
  background:rgba(255,155,0,.15);
  color:var(--brand);
  border-color:rgba(255,155,0,.35);
}

.status-attention{
  background:rgba(255,195,0,.18);
  color:#c47a00;
  border-color:rgba(255,195,0,.35);
}

.status-in-progress{
  background:rgba(45,130,220,.15);
  color:#2d82dc;
  border-color:rgba(45,130,220,.35);
}

.status-completed{
  background:rgba(26,160,109,.15);
  color:var(--success);
  border-color:rgba(26,160,109,.35);
}

.status-pending{
  background:rgba(128,128,128,.12);
  color:var(--muted);
  border-color:rgba(128,128,128,.28);
}

.status-cancelled{
  background:rgba(230,66,66,.12);
  color:#d44545;
  border-color:rgba(230,66,66,.32);
}

.chat-list,
.favorites-grid,
.doc-list,
.payments-list{
  display:grid;
  gap:14px;
}

.chat-card,
.favorite-card,
.doc-card,
.payment-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.chat-head,
.favorite-head,
.doc-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.chat-card,
.favorite-card{
  flex-direction:column;
  align-items:stretch;
}

.chat-head{
  justify-content:space-between;
  width:100%;
}

.chat-title,
.favorite-title,
.payment-title,
.doc-name{
  font-weight:600;
  color:var(--text);
}

.chat-meta,
.favorite-meta,
.payment-meta,
.doc-meta{
  font-size:12px;
  color:var(--muted);
}

.chat-preview{
  margin:0;
  font-size:14px;
  color:var(--text);
}

.chat-actions,
.favorite-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.favorites-grid{
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
}

.favorite-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface-strong);
  display:grid;
  place-items:center;
  font-weight:600;
  color:var(--text);
}

.doc-upload{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.doc-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.doc-title{
  font-weight:600;
  color:var(--text);
}

.doc-input{
  border:1px dashed var(--border);
  background:var(--surface-strong);
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}

.doc-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--brand);
  display:grid;
  place-items:center;
}

.payments-summary{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:12px;
  margin-bottom:12px;
}

.payment-stat{
  display:grid;
  gap:6px;
}

.payment-label{
  font-size:12px;
  color:var(--muted);
}

.payment-value{
  font-weight:600;
  font-size:18px;
  color:var(--text);
}

.settings-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:12px;
}

.settings-card{
  display:grid;
  gap:16px;
}

.settings-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.settings-title{
  font-weight:600;
  color:var(--text);
}

.settings-actions{
  margin-top:12px;
}

.switch{
  position:relative;
  width:44px;
  height:24px;
  display:inline-block;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.switch-slider{
  position:absolute;
  inset:0;
  background:var(--surface-strong);
  border:1px solid var(--border);
  border-radius:999px;
  transition:all .2s ease;
}

.switch-slider::after{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  left:3px;
  top:2px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  transition:transform .2s ease, background .2s ease;
}

.switch input:checked + .switch-slider{
  background:rgba(255,155,0,.2);
  border-color:rgba(255,155,0,.45);
}

.switch input:checked + .switch-slider::after{
  transform:translateX(20px);
  background:var(--brand);
}

.profile-avatar{
  --avatar-size:120px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}

.profile-avatar-frame{
  position:relative;
  width:var(--avatar-size);
  height:var(--avatar-size);
}

.profile-avatar-actions{
  position:absolute;
  right:-8px;
  bottom:6px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.profile-avatar-circle{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#f1f1f1;
  border:1px solid var(--border);
  display:grid;
  place-items:center;
  overflow:hidden;
}

.profile-avatar-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-avatar-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:#b5b5b5;
}

.profile-avatar-placeholder .icon{
  width:48px;
  height:48px;
}

.profile-avatar-upload{
  position:static;
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--brand);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow:0 4px 10px rgba(0,0,0,.12);
}

.profile-avatar-upload .icon{
  width:16px;
  height:16px;
}

.profile-avatar-upload:hover{
  transform:translateY(-1px);
  color:var(--brand-strong);
}

.profile-avatar-note{
  font-size:12px;
  color:var(--muted);
}

.profile-avatar-remove{
  padding:6px 10px;
  font-size:12px;
}

.profile-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.profile-stat{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  display:grid;
  gap:6px;
}

.profile-stat-label{
  font-size:12px;
  color:var(--muted);
}

.profile-stat-value{
  font-weight:600;
  font-size:16px;
  color:var(--text);
}

.profile-name-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.profile-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.profile-section{
  display:grid;
  gap:12px;
}

.profile-section-title{
  font-weight:600;
  font-size:14px;
  color:var(--text);
}

.profile-fields{
  display:grid;
  gap:14px;
}

.profile-field{
  display:grid;
  gap:8px;
  font-size:14px;
  color:var(--muted);
}

.profile-field input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--text);
}

.profile-field select{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--text);
}

.profile-field textarea{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--text);
  resize:vertical;
}

.profile-hint{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--border);
  background:var(--surface-strong);
  padding:10px 12px;
  border-radius:10px;
}

.profile-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.profile-status{
  min-height:18px;
  font-size:13px;
  color:var(--muted);
}

.profile-status.is-success{color:var(--success)}
.profile-status.is-error{color:var(--danger)}

.status-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}

.status-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  display:grid;
  gap:6px;
  background:var(--surface);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.status-card input{
  display:none;
}

.status-card .status-title{
  font-weight:600;
  color:var(--text);
}

.status-card .status-subtitle{
  font-size:12px;
  color:var(--muted);
}

.status-card:has(input:checked){
  border-color:var(--brand);
  box-shadow:0 0 0 2px rgba(255,155,0,.2);
  transform:translateY(-1px);
}

.responses-group{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.responses-header{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
}

.responses-title{
  font-weight:600;
  color:var(--text);
}

.responses-toggle-hint{
  font-size:12px;
  color:var(--muted);
  grid-column:1 / -1;
}

.responses-list{
  display:grid;
  gap:12px;
}

.response-card{
  display:grid;
  gap:12px;
}

.response-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.response-avatar{
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--surface-strong);
  border:1px solid var(--border);
  display:grid;
  place-items:center;
  font-weight:600;
  color:var(--text);
}

.response-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.response-name{
  font-weight:600;
}

.response-meta{
  font-size:12px;
  color:var(--muted);
}

.response-text{
  font-size:14px;
  color:var(--text);
}

.response-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.response-offer{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.response-price{
  font-weight:600;
  color:var(--text);
}

.response-rating{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.response-rating .icon{
  width:14px;
  height:14px;
}

.response-privacy{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  color:var(--muted);
}

.responses-header-simple{
  grid-template-columns:1fr auto;
}

.chat-request{
  font-size:12px;
  color:var(--muted);
  margin-top:-4px;
}

.chat-privacy{
  font-size:12px;
  color:var(--muted);
  margin-bottom:4px;
}

.chat-thread{
  display:grid;
  gap:16px;
}

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

.chat-messages{
  display:grid;
  gap:10px;
}

.chat-message{
  display:flex;
  flex-direction:column;
  gap:4px;
  max-width:70%;
}

.chat-message.is-client{
  margin-left:auto;
  text-align:right;
}

.chat-bubble{
  background:var(--surface-strong);
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  font-size:14px;
}

.chat-message.is-client .chat-bubble{
  background:rgba(255,155,0,.12);
  border-color:rgba(255,155,0,.3);
}

.chat-time{
  font-size:11px;
  color:var(--muted);
}

.chat-input{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.chat-input-field{
  flex:1 1 240px;
  min-width:180px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface-strong);
  color:var(--text);
}

.chat-attach{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.history-list{
  display:grid;
  gap:14px;
}

.review-inline{
  display:grid;
  gap:10px;
  padding-top:10px;
  border-top:1px solid var(--border);
}

.review-stars{
  display:flex;
  gap:6px;
}

.star-btn{
  border:1px solid var(--border);
  background:var(--surface-strong);
  border-radius:8px;
  padding:4px 8px;
  cursor:pointer;
  color:var(--brand);
}

.review-textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px 12px;
  background:var(--surface-strong);
  color:var(--text);
}

.master-dashboard-grid{
  display:grid;
  gap:16px;
}

.master-status-card{
  display:grid;
  gap:12px;
}

.master-status-title{
  font-weight:600;
  color:var(--text);
}

.master-kpi-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
  gap:12px;
}

.kpi-card{
  display:grid;
  gap:6px;
}

.kpi-label{
  font-size:12px;
  color:var(--muted);
}

.kpi-value{
  font-size:24px;
  font-weight:700;
  color:var(--text);
}

.kpi-note{
  font-size:12px;
  color:var(--muted);
}

.master-quick-card{
  display:grid;
  gap:12px;
}

.master-quick-title{
  font-weight:600;
  color:var(--text);
}

.master-quick-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.services-list{
  display:grid;
  gap:12px;
}

.service-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.service-title{
  font-weight:600;
  color:var(--text);
}

.service-price{
  font-size:12px;
  color:var(--muted);
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
  margin-bottom:12px;
}

.portfolio-card{
  display:grid;
  gap:10px;
}

.portfolio-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}

.portfolio-images img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid var(--border);
}

.portfolio-title{
  font-weight:600;
  color:var(--text);
}

.portfolio-actions{
  display:grid;
  gap:10px;
}

.favorites-toolbar{
  display:grid;
  gap:10px;
}

.favorite-toggle.is-active{
  border-color:var(--brand);
  color:var(--brand);
}

.privacy-grid{
  display:grid;
  gap:12px;
}

.privacy-card{
  display:grid;
  gap:12px;
}

.privacy-title{
  font-weight:600;
  color:var(--text);
}

.privacy-list{
  display:grid;
  gap:12px;
}

.privacy-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.privacy-label{
  font-weight:600;
  color:var(--text);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
  gap:10px;
}

.gallery-item{
  border:1px dashed var(--border);
  border-radius:12px;
  padding:14px;
  font-size:12px;
  color:var(--muted);
  text-align:center;
  background:var(--surface-strong);
}

.gallery-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.gallery-status{
  font-size:12px;
  color:var(--muted);
}

.rating-summary{
  display:flex;
  align-items:center;
  gap:12px;
}

.rating-score{
  font-size:28px;
  font-weight:700;
  color:var(--brand);
}

.rating-stars{
  font-size:14px;
  letter-spacing:2px;
  color:var(--brand);
}

.reviews-list{
  display:grid;
  gap:12px;
}

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

.review-title{
  font-weight:600;
}

.review-meta{
  font-size:12px;
  color:var(--muted);
}

.review-text{
  font-size:14px;
  color:var(--text);
}

.site-footer{
  border-top:1px solid var(--border);
  padding:32px 0;
  background:var(--surface-strong);
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
}

.footer-title{font-weight:700;margin-bottom:10px}

.footer-links{
  display:grid;
  gap:8px;
}

.footer-links button{
  background:none;
  border:none;
  text-align:left;
  color:var(--muted);
  cursor:pointer;
}

.footer-bottom{
  margin-top:20px;
  color:var(--muted);
  font-size:12px;
}

.mobile-only{display:none}

.reveal{opacity:0;transform:translateY(16px);animation:rise .6s ease forwards;animation-delay:calc(var(--i, 0) * 0.08s)}

@keyframes rise{to{opacity:1;transform:translateY(0)}}

@media (max-width:1200px){
  .service-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
}

@media (max-width:960px){
  .mobile-only{display:inline-flex}
  .hero-title{font-size:32px}
  .hero{gap:24px}
  .service-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  .how-hub-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .how-it-works__grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .filter-panel{display:none}
  .dashboard{grid-template-columns:1fr}
  .dashboard-nav{position:relative;top:auto}
  .profile-card{grid-template-columns:1fr}
  .profile-avatar{align-items:flex-start;text-align:left}
  .profile-hero{flex-direction:column}
  .how-hub-item{
    padding:14px;
  }
}

@media (max-width:720px){
  .container{padding:0 16px}
  .header-inner{flex-wrap:wrap;gap:12px}
  .header-actions{flex-wrap:wrap}
  .profile-avatar{--avatar-size:96px}
  .profile-stats{grid-template-columns:1fr}
  .profile-name-grid{grid-template-columns:1fr}
  .profile-grid{grid-template-columns:1fr}
  .responses-header{grid-template-columns:1fr}
  .privacy-row{flex-direction:column;align-items:flex-start}
  .hero-title{font-size:30px}
  .hero-rotator{margin-bottom:14px;padding:0}
  .hero-subheading{font-size:24px;margin-bottom:6px;line-height:1.6}
  .hero-support{font-size:21px;margin-bottom:5px;line-height:1.6}
  .hero-subheading + .hero-support{margin-top:4px}
  .service-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid-12{grid-template-columns:repeat(4, minmax(0,1fr))}
  .col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-12{grid-column:span 4}
  .master-card{grid-template-columns:1fr}
  .page-hero{flex-direction:column;align-items:flex-start}
}

@media (max-width:560px){
  .header-actions{width:100%;justify-content:flex-end}
  .search-followup .btn{width:100%}
  .results-head{flex-direction:column;align-items:flex-start}
  .settings-group{flex-direction:column;align-items:flex-start}
  .segmented{flex-wrap:wrap}
  .how-hub-grid{grid-template-columns:1fr}
  .how-it-works__grid{grid-template-columns:1fr}
  .how-hub-item{
    padding:14px;
  }
  .request-actions{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}
