:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-card: #121212;
  --bg-elevated: #191919;
  --line: rgba(244, 244, 244, 0.12);
  --line-strong: rgba(244, 244, 244, 0.22);
  --text: #f4f4f4;
  --text-sec: #b8b8b8;
  --text-dim: #7b7b7b;
  --accent: #b8b8b8;
  --accent-dim: #8a8a8a;
  --danger: #ff5a5a;
  --success: #7ddf9b;
  --pending: #d6bd76;
  --font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Russo One", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0;
}

body {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

svg {
  display: block;
}

#app {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 180px),
    var(--bg);
}

.app-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 480px);
  height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid rgba(244, 244, 244, 0.07);
  backdrop-filter: blur(18px);
}

.brand-chip,
.header-auth-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  cursor: pointer;
}

.brand-chip {
  max-width: 190px;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

.brand-chip-logo {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

#header-auth {
  position: relative;
}

.header-avatar {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 900;
}

.header-auth-name {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.header-demo-tag {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text-sec);
  font-size: 10px;
  text-transform: uppercase;
}

.header-auth-btn--login {
  padding-inline: 14px;
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 800;
}

.header-auth-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.header-auth-menu[hidden] {
  display: none;
}

.header-auth-menu button {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.header-auth-menu button:hover {
  background: rgba(255,255,255,0.07);
}

#pages {
  position: absolute;
  inset: 0;
}

.page {
  position: absolute;
  inset: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 76px 14px 104px;
  scrollbar-width: none;
}

.page::-webkit-scrollbar {
  display: none;
}

.page.active {
  display: block;
}

.hero {
  position: relative;
  min-height: 340px;
  height: min(54svh, 460px);
  margin: -12px -14px 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(184,184,184,0.12), transparent 34%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

#hero-wave,
#dl-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.85)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 74px 18px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-lockup {
  display: grid;
  gap: 22px;
}

.hero-logo {
  width: 94px;
  height: 94px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.98;
  font-weight: 400;
  text-transform: uppercase;
}

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

.hero-cta {
  flex: 1;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-danger,
.icon-btn {
  min-height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-secondary,
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.btn-danger {
  background: rgba(255,90,90,0.12);
  color: #ffd0d0;
  border: 1px solid rgba(255,90,90,0.34);
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.btn-primary:not(:disabled):active,
.btn-secondary:not(:disabled):active,
.btn-ghost:active,
.btn-danger:not(:disabled):active {
  transform: translateY(1px);
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 24px;
}

.home-strip div {
  min-height: 68px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.home-strip span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 18px;
}

.home-strip b {
  color: var(--text-sec);
  font-size: 11px;
  line-height: 1.25;
}

.section-head {
  margin: 0 0 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.page-head {
  margin-top: 4px;
  margin-bottom: 14px;
}

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

.service-card {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #111;
}

.service-card-type,
.service-card strong,
.service-card-price {
  display: block;
  margin-inline: 10px;
}

.service-card-type {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong {
  min-height: 38px;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.16;
}

.service-card-price {
  margin-top: auto;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card--text {
  min-height: 176px;
  padding-top: 14px;
}

.service-card--text strong {
  min-height: auto;
  font-size: 21px;
  text-transform: uppercase;
}

.assistant-page {
  display: none;
}

.assistant-page.active {
  display: flex;
  flex-direction: column;
}

.assistant-shell {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.chat-messages {
  min-height: 0;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 86%;
  padding: 11px 12px;
  border-radius: 8px;
  line-height: 1.45;
  font-size: 14px;
}

.chat-bubble.model {
  align-self: flex-start;
  background: var(--bg-elevated);
  color: var(--text);
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}

.chat-message-group {
  display: grid;
  gap: 8px;
}

.chat-typing {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text-sec);
}

.chat-service-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.chat-service-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.chat-service-card b,
.chat-service-card span {
  display: block;
}

.chat-service-card b {
  margin-bottom: 4px;
  font-size: 14px;
}

.chat-service-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.chat-service-btn {
  grid-column: 1 / -1;
  min-height: 38px;
  font-size: 13px;
}

.assistant-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: rgba(5,5,5,0.74);
}

.assistant-composer input,
.form-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.assistant-composer input:focus,
.form-input:focus {
  border-color: rgba(184,184,184,0.55);
  box-shadow: 0 0 0 3px rgba(184,184,184,0.08);
}

.icon-btn {
  width: 46px;
  min-height: 46px;
  padding: 0;
  background: var(--accent);
  color: var(--bg);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contacts-grid {
  display: grid;
  gap: 10px;
}

.contact-action {
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.contact-action--wide {
  min-height: 86px;
}

.contact-action-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bg);
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.contact-action b,
.contact-action small {
  display: block;
  min-width: 0;
}

.contact-action b {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.25;
}

.contact-action small {
  margin-top: 4px;
  color: var(--text-sec);
  font-size: 12px;
}

.profile-card,
.state-card,
.empty-state,
.booking-card,
.summary-card,
.contact-card,
.booking-request-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.profile-card {
  padding: 16px;
  margin-bottom: 10px;
}

.profile-name {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 900;
}

.profile-username {
  margin-bottom: 16px;
  color: var(--text-sec);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.profile-form {
  display: grid;
  gap: 9px;
}

.form-label {
  color: var(--text-sec);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-install {
  width: 100%;
  margin-top: 10px;
}

.state-card,
.empty-state {
  padding: 24px 16px;
  text-align: center;
}

.state-card p,
.empty-state p {
  margin: 0 0 14px;
  color: var(--text-sec);
  line-height: 1.45;
}

.state-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
}

.loading {
  min-height: 130px;
  display: grid;
  place-items: center;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,0.14);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.history-section-title {
  margin: 16px 0 8px;
  color: var(--text-sec);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card {
  padding: 12px;
  margin-bottom: 8px;
  cursor: pointer;
}

.booking-card-top,
.booking-meta,
.summary-line,
.time-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-id {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 900;
}

.booking-status {
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--text-sec);
  font-size: 11px;
  font-weight: 900;
}

.booking-status.pending { color: var(--pending); }
.booking-status.confirmed,
.booking-status.in_progress { color: var(--success); }
.booking-status.cancelled { color: var(--danger); }

.booking-card h3 {
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.2;
}

.booking-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--text-sec);
  font-size: 13px;
}

.booking-detail {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.booking-detail div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.booking-detail span {
  color: var(--text-sec);
}

.booking-detail p {
  margin: 0;
  color: var(--text-sec);
  line-height: 1.45;
}

#dock {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 480px);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: rgba(5,5,5,0.88);
  border-top: 1px solid rgba(244,244,244,0.08);
  backdrop-filter: blur(18px);
}

.dock-item {
  min-width: 0;
  height: 58px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  display: grid;
  place-items: center;
  gap: 3px;
  cursor: pointer;
}

.dock-item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dock-item span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
}

.dock-item.active {
  background: rgba(184,184,184,0.12);
  color: var(--text);
}

#booking-overlay,
#dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: var(--bg);
}

#booking-overlay.active,
#dialog-overlay.active {
  display: block;
}

.booking-shell {
  width: 100%;
  max-width: 480px;
  height: 100dvh;
  margin: 0 auto;
  overflow-y: auto;
  padding: max(14px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(184,184,184,0.08), transparent 180px),
    var(--bg);
}

.booking-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-sec);
  font-size: 12px;
  font-weight: 900;
}

.booking-topbar-btn {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

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

.booking-step h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.booking-subtitle {
  margin: -4px 0 4px;
  color: var(--text-sec);
  line-height: 1.35;
}

.booking-info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.booking-service-img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.booking-service-copy {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.booking-service-copy span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-service-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.booking-service-copy p {
  margin: 0;
  color: var(--text-sec);
  line-height: 1.45;
}

.booking-service-copy b {
  color: var(--accent);
  font-size: 18px;
}

.calendar {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.cal-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cal-header strong {
  text-align: center;
  text-transform: uppercase;
}

.cal-nav {
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

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

.cal-weekdays {
  margin-bottom: 6px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.cal-day {
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.cal-day.today {
  outline: 1px solid var(--line-strong);
}

.cal-day.selected,
.cal-day:active {
  background: var(--accent);
  color: var(--bg);
  font-weight: 900;
}

.cal-day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.cal-day.empty {
  background: transparent;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.slot,
.fixed-slot-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.slot.start,
.slot.end,
.fixed-slot-btn:active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.slot.in-range {
  background: rgba(184,184,184,0.16);
}

.slot.taken,
.slot.past,
.slot:disabled,
.fixed-slot-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fixed-slots-list {
  display: grid;
  gap: 8px;
}

.time-info,
.summary-card,
.contact-card,
.booking-request-card {
  padding: 12px;
}

.time-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.time-info span,
.summary-line span {
  color: var(--text-sec);
}

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

.summary-line b {
  max-width: 62%;
  text-align: right;
}

.contact-card {
  display: grid;
  gap: 8px;
}

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

.booking-request-card p {
  margin: 0;
  color: var(--text-sec);
  line-height: 1.45;
}

.booking-request-input {
  min-height: 170px;
  padding-top: 12px;
  resize: vertical;
}

.booking-success {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.booking-success h2 {
  margin: 0;
  font-size: 30px;
  text-transform: uppercase;
}

.booking-success p {
  max-width: 300px;
  margin: 0;
  color: var(--text-sec);
  line-height: 1.45;
}

#dialog-overlay {
  z-index: 130;
  background: rgba(0,0,0,0.72);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#dialog-overlay.active {
  display: flex;
}

.confirm-card {
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.confirm-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.confirm-card p {
  margin: 0 0 14px;
  color: var(--text-sec);
  line-height: 1.45;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

#toast {
  position: fixed;
  z-index: 160;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  transform: translate(-50%, 16px);
  width: min(calc(100% - 28px), 420px);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f4f4;
  color: #050505;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

#toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

#landscape-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--bg);
}

#landscape-overlay[hidden] {
  display: none;
}

.lo-panel {
  width: min(100%, 320px);
  text-align: center;
}

.lo-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
}

.lo-panel h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.lo-panel p {
  margin: 0;
  color: var(--text-sec);
}

@media (max-width: 360px) {
  .page {
    padding-inline: 10px;
  }

  .hero {
    margin-inline: -10px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .services-grid {
    gap: 8px;
  }

  .service-card strong {
    font-size: 14px;
  }

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