:root {
  --bg: #020202;
  --bg-card: #0d0d0d;
  --bg-elevated: #141414;
  --panel: rgba(10, 10, 10, 0.9);
  --text: #f7f3f1;
  --text-sec: #a7a0a0;
  --text-muted: #666060;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #a10d18;
  --accent-soft: rgba(161, 13, 24, 0.16);
  --steel: #6f6a6a;
  --success: #82d173;
  --danger: #ff5c68;
  --warning: #e4be68;
  --r: 16px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --dock: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; letter-spacing: -0.2px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

#wave-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6; }
#noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  background-repeat: repeat;
  background-size: 180px;
  mix-blend-mode: soft-light;
}

#app { height: 100vh; height: 100dvh; display: flex; flex-direction: column; position: relative; z-index: 2; }
#pages { flex: 1; overflow: hidden; position: relative; }
.page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 calc(var(--dock) + var(--safe-bottom) + 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.page.active { opacity: 1; pointer-events: auto; }
.page::-webkit-scrollbar { width: 0; }

.hero {
  position: relative;
  min-height: auto;
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  display: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-card {
  width: 100%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(11, 11, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px 18px 22px;
}
.hero-logo {
  width: min(72vw, 260px);
  height: auto;
  display: block;
  opacity: 1;
}
.hero-subtitle {
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 240, 234, 0.8);
}
.hero-btn {
  min-width: 172px;
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;
  transition: transform .16s ease, opacity .16s ease;
}
.hero-btn:active { transform: translateY(1px); opacity: .92; }
.hero-btn svg { width: 16px; height: 16px; }

.page-title,
.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-muted);
}
.page-title { padding: 22px 22px 14px; }
.section-label { margin: 14px 22px 10px; }

.services-grid { display: flex; flex-direction: column; gap: 12px; padding: 0 12px; }
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card:active { opacity: .88; transform: scale(.99); }
.service-card-img { width: 100%; display: block; object-fit: cover; object-position: center; filter: saturate(.84) contrast(1.02) brightness(.72); background: #0f0f0f; }
.service-card.featured .service-card-img { height: 212px; }
.service-card:not(.featured) .service-card-img { height: 176px; }
.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.74) 76%, rgba(0, 0, 0, 0.96) 100%);
}
.service-card-name {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
  max-width: 85%;
}
.service-card:not(.featured) .service-card-name { font-size: 16px; max-width: 100%; }
.service-card-price {
  font-size: 12px;
  color: rgba(247, 243, 241, 0.82);
  font-weight: 700;
  margin-top: 6px;
}
.services-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.booking-step { animation: fadeIn .2s ease; padding: 0 22px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-muted);
  margin: 22px 0 16px;
}
.step-subtitle { font-size: 14px; color: var(--text-sec); margin: -8px 0 18px; }
.step-back {
  background: none;
  border: none;
  color: var(--text-sec);
  font-size: 13px;
  cursor: pointer;
  padding: 14px 0 0;
  font-family: inherit;
}

.pick-card,
.calendar,
.time-info,
.summary-card,
.profile-card,
.contacts-card,
.booking-card {
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}
.pick-card {
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  display: flex;
  gap: 12px;
  align-items: center;
}
.pick-card:active,
.pick-card.selected {
  background: rgba(25, 10, 12, 0.96);
  border-color: rgba(161, 13, 24, 0.36);
}
.pick-card-icon { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.pick-card-name { font-weight: 800; font-size: 14px; }
.pick-card-price { color: rgba(247, 243, 241, 0.86); font-weight: 700; font-size: 12px; margin-top: 4px; }

.calendar { border-radius: 18px; padding: 16px; margin-bottom: 10px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-month { font-weight: 800; font-size: 14px; text-transform: capitalize; }
.cal-nav {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-sec);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .12s;
  border: none;
  background: none;
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(255, 255, 255, .05); }
.cal-day.today { border: 1px solid rgba(161, 13, 24, .42); }
.cal-day.selected { background: var(--accent); color: #fff; font-weight: 800; }
.cal-day.disabled { color: var(--text-muted); cursor: default; opacity: .24; }
.cal-day.empty { cursor: default; }

.slots-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-bottom: 10px; }
.slot {
  padding: 10px 0;
  text-align: center;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .12s;
  font-family: inherit;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.slot.start,
.slot.end {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.slot.in-range { background: rgba(161, 13, 24, 0.12); border-color: rgba(161, 13, 24, 0.22); }
.slot.taken { opacity: .18; cursor: default; text-decoration: line-through; }
.slot.past { opacity: .08; cursor: default; }
.time-info {
  border-radius: 16px;
  padding: 13px 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}
.time-info-price { color: rgba(247, 243, 241, 0.9); }

.summary-card { border-radius: 18px; padding: 17px; margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; gap: 12px; }
.summary-label { color: var(--text-sec); }
.summary-value { font-weight: 700; text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 18px;
  font-weight: 800;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
  resize: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: rgba(161, 13, 24, 0.4); box-shadow: 0 0 0 3px rgba(161, 13, 24, 0.1); }
.form-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding-left: 2px;
}

.btn-primary {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  border: none;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.btn-primary:active { opacity: .88; }
.btn-primary:disabled { opacity: .24; cursor: default; }
.btn-secondary {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost,
.btn-danger {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.btn-ghost { color: var(--text-sec); }
.btn-danger { color: var(--danger); padding: 6px 0; }

.booking-card { border-radius: 18px; padding: 15px; margin: 0 22px 8px; }
.booking-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.booking-id { font-weight: 700; font-size: 12px; color: var(--text-muted); }
.booking-status {
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.booking-status.pending { background: rgba(228, 190, 104, 0.12); color: var(--warning); }
.booking-status.confirmed { background: rgba(130, 209, 115, 0.12); color: var(--success); }
.booking-status.in_progress { background: rgba(255, 255, 255, 0.08); color: #fff; }
.booking-status.completed { background: rgba(255, 255, 255, 0.05); color: var(--text-sec); }
.booking-status.cancelled { background: rgba(255, 107, 87, 0.1); color: var(--danger); }
.booking-service { font-weight: 800; font-size: 15px; letter-spacing: -0.02em; }
.booking-meta { font-size: 12px; color: var(--text-sec); margin-top: 3px; }
.booking-meta span { margin-right: 8px; }
.booking-comment { font-size: 11px; color: var(--text-muted); margin-top: 5px; font-style: italic; }
.booking-actions { margin-top: 8px; display: flex; gap: 12px; }

.profile-card { border-radius: 20px; padding: 20px; margin: 0 22px 10px; }
.profile-name { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; }
.profile-username { font-size: 12px; color: var(--text-sec); margin-top: 2px; }
.profile-stats { display: flex; gap: 28px; margin-top: 18px; }
.profile-stat-value { font-size: 28px; font-weight: 800; letter-spacing: -0.05em; }
.profile-stat-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .16em; margin-top: 2px; }

.contacts-card { border-radius: 20px; padding: 18px 20px; margin: 0 22px 8px; }
.contacts-card-copy { font-size: 13px; line-height: 1.6; color: var(--text-sec); margin-bottom: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
}
.contact-row a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-icon {
  width: 18px;
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--dock) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
}
.dock-item {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .15s;
  padding: 6px 14px;
}
.dock-item.active { color: #fff; }
.dock-item svg { width: 20px; height: 20px; }

#chat-fab {
  position: fixed;
  bottom: calc(var(--dock) + var(--safe-bottom) + 14px);
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
#chat-fab:active { background: rgba(28, 28, 28, 0.94); }
#chat-fab svg { width: 18px; height: 18px; }

#chat-backdrop,
#service-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
#chat-backdrop.active,
#service-sheet-backdrop.active { opacity: 1; pointer-events: auto; }
#chat-panel,
#service-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 201;
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -20px 48px rgba(0, 0, 0, 0.44);
}
#chat-panel.active,
#service-sheet.active { transform: translateY(0); }
#chat-panel { height: 72vh; border-radius: 24px 24px 0 0; display: flex; flex-direction: column; }
#service-sheet { max-height: 68vh; border-radius: 24px 24px 0 0; padding: 22px; }
.chat-header {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  font-size: 14px;
}
.chat-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
#chat-messages { flex: 1; overflow-y: auto; padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.chat-bubble {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-bubble.model { background: rgba(255, 255, 255, 0.05); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.user { background: rgba(161, 13, 24, 0.18); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-typing { align-self: flex-start; color: var(--text-muted); font-size: 12px; padding: 4px 0; }
.chat-input-row {
  padding: 10px 14px calc(10px + var(--safe-bottom));
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.chat-send {
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.sheet-title { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 6px; }
.sheet-desc { font-size: 13px; color: var(--text-sec); margin-bottom: 10px; line-height: 1.5; }
.sheet-price { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: rgba(247, 243, 241, 0.86); }
.cert-amounts-row,
.tiers-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.cert-chip,
.tier-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  font-family: inherit;
}
.cert-chip { cursor: pointer; }
.cert-chip:active { background: rgba(255, 255, 255, 0.09); }
.tier-badge { display: flex; gap: 6px; align-items: center; font-size: 10px; }
.tier-hours { font-weight: 800; color: var(--text-muted); }
.tier-label { font-weight: 700; }
.tier-price { font-weight: 800; color: rgba(247, 243, 241, 0.88); }

#confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
#confirm-overlay.active { opacity: 1; pointer-events: auto; }
.confirm-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
.confirm-icon { color: var(--success); margin-bottom: 12px; }
.confirm-card h2 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.confirm-card p { color: var(--text-sec); font-size: 12px; margin-bottom: 18px; line-height: 1.6; }

#toast {
  position: fixed;
  bottom: calc(var(--dock) + var(--safe-bottom) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: all .2s;
  z-index: 400;
  white-space: nowrap;
}
#toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

body.light-mode {
  --bg-card: #22080d;
  --bg-elevated: #2a0b11;
  --text: #f7f3f1;
  --text-sec: #c2aaaa;
  --text-muted: #8a6767;
  --border: rgba(255, 255, 255, 0.08);
  background: #190509;
}
body.light-mode #wave-bg,
body.light-mode #noise-overlay { opacity: .12; }
body.light-mode #app,
body.light-mode #pages { background: transparent; }
body.light-mode .pick-card,
body.light-mode .calendar,
body.light-mode .time-info,
body.light-mode .summary-card,
body.light-mode .booking-card,
body.light-mode .profile-card,
body.light-mode .contacts-card {
  background: rgba(49, 10, 16, 0.66);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}
body.light-mode .pick-card:active,
body.light-mode .pick-card.selected { border-color: rgba(255, 255, 255, 0.16); }
body.light-mode .slot { background: rgba(52, 10, 18, 0.9); border-color: rgba(255, 255, 255, 0.06); color: #f7f3f1; }
body.light-mode .slot.in-range { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }
body.light-mode .slot.start,
body.light-mode .slot.end,
body.light-mode .cal-day.selected { background: #fff; color: #160308; }
body.light-mode .btn-primary,
body.light-mode .chat-send { background: #fff; color: #160308; }
body.light-mode .form-input {
  background: rgba(32, 8, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
  color: #f7f3f1;
}
body.light-mode .form-input::placeholder { color: #967474; }
body.light-mode #dock {
  background: rgba(25, 5, 9, 0.94);
  border-top-color: rgba(255, 255, 255, 0.08);
}
body.light-mode .dock-item { color: #a78484; }
body.light-mode .dock-item.active { color: #fff; }
body.light-mode #chat-fab {
  background: rgba(38, 8, 13, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}
body.light-mode #chat-panel,
body.light-mode #service-sheet,
body.light-mode .confirm-card { background: #190509; border-color: rgba(255, 255, 255, 0.08); }
body.light-mode .chat-bubble.model { background: rgba(255, 255, 255, 0.06); }
body.light-mode .chat-bubble.user { background: rgba(255, 255, 255, 0.1); }
body.light-mode #toast {
  background: rgba(38, 8, 13, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f7f3f1;
}
body.light-mode .loading .spinner { border-color: rgba(255, 255, 255, 0.08); border-top-color: #fff; }

.loading { display: flex; justify-content: center; padding: 40px 0; }
.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 42px 22px; color: var(--text-sec); }
.empty-state p { font-size: 13px; margin-bottom: 14px; line-height: 1.55; }

@media (max-width: 380px) {
  .hero-card { padding: 24px 18px 20px; }
  .hero-logo { width: min(72vw, 220px); }
  .hero-btn { min-width: 154px; height: 48px; }
  .service-card.featured .service-card-img { height: 188px; }
  .service-card:not(.featured) .service-card-img { height: 166px; }
}
