:root {
  --bg: #000000;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f2f2f2;
  --text-soft: rgba(242, 242, 242, 0.72);
  --text-muted: rgba(242, 242, 242, 0.46);
  --border: rgba(217, 217, 217, 0.14);
  --accent: #d9d9d9;
  --accent-ink: #050505;
  --danger: #ff6b6b;
  --warning: #f2b84b;
  --success: #79d18b;
  --radius: 8px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --dock: 68px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -20%, rgba(217,217,217,0.12), transparent 36rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

#app {
  width: min(100%, 540px);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

#pages {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 calc(var(--dock) + var(--safe-bottom) + 22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  scrollbar-width: none;
}

.page::-webkit-scrollbar,
.assistant-shell::-webkit-scrollbar,
#chat-messages::-webkit-scrollbar,
.booking-shell::-webkit-scrollbar,
.filter-row::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
}

.page-head {
  padding: 22px 18px 12px;
}

.page-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
}

.section-label {
  margin: 0 16px 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.loading {
  display: flex;
  justify-content: center;
  padding: 36px 0;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(217,217,217,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.state-card {
  margin: 0 16px 10px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text-soft);
  text-align: center;
}

.state-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(54dvh, 450px);
  padding: 28px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: min(210px, 58vw);
  max-height: 180px;
  object-fit: contain;
  filter: invert(1);
}

.hero p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.hero-btn {
  margin-top: 20px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

/* Catalog */
.services-grid {
  display: grid;
  gap: 10px;
  padding: 0 16px;
}

.service-card {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.service-card:active,
.chat-service-card:active,
.booking-card:active,
.contact-action:active {
  transform: scale(0.992);
}

.service-media {
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(217,217,217,0.08);
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  display: block;
  object-fit: cover;
}

.icon-card .service-media,
.chat-service-card.icon-card .chat-service-media,
.booking-info-card.icon-card .booking-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card .service-media img,
.chat-service-card.icon-card .chat-service-media img,
.booking-info-card.icon-card .booking-media img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.82;
}

.service-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.service-name {
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
}

.service-desc {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.service-meta > span {
  color: var(--text-soft);
}

/* Buttons and fields */
.btn-primary,
.btn-secondary,
.btn-danger {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-danger {
  background: rgba(255,107,107,0.1);
  color: var(--danger);
  border-color: rgba(255,107,107,0.22);
}

.btn-primary.compact,
.btn-secondary.compact,
.btn-danger.compact {
  width: auto;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled {
  opacity: 0.38;
  cursor: default;
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}

.field-block span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.form-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #080808;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  resize: vertical;
  font-size: 16px;
}

.form-input::placeholder {
  color: rgba(242,242,242,0.34);
}

.form-input:focus {
  border-color: rgba(217,217,217,0.34);
  box-shadow: 0 0 0 3px rgba(217,217,217,0.08);
}

/* Assistant */
.assistant-page {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.assistant-shell {
  flex: 1;
  min-height: 0;
  margin: 0 16px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

#chat-messages {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 14px 14px 86px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

.chat-bubble.model {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border-bottom-left-radius: 4px;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom-right-radius: 4px;
  font-weight: 700;
}

.chat-typing {
  align-self: flex-start;
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 2px;
}

.chat-message-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.chat-service-card {
  width: min(300px, calc(100vw - 70px));
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0a0a0a;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.chat-service-media {
  border-radius: 6px;
  overflow: hidden;
  background: #050505;
}

.chat-service-media img {
  width: 100%;
  height: 72px;
  display: block;
  object-fit: cover;
}

.chat-service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.chat-service-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

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

.assistant-composer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.96);
}

.assistant-composer input {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #050505;
  color: var(--text);
  outline: none;
  font-size: 16px;
}

.chat-send {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

/* History */
.filter-stack {
  display: grid;
  gap: 8px;
  margin: 0 16px 14px;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-chip {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.booking-card {
  margin: 0 16px 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.booking-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.booking-card h3 {
  margin: 9px 0 5px;
  font-size: 16px;
  line-height: 1.25;
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.status-badge.pending { color: var(--warning); background: rgba(242,184,75,0.12); }
.status-badge.confirmed { color: var(--success); background: rgba(121,209,139,0.12); }
.status-badge.in_progress { color: var(--accent); background: rgba(217,217,217,0.11); }
.status-badge.completed { color: var(--text-muted); background: rgba(255,255,255,0.06); }
.status-badge.cancelled { color: var(--danger); background: rgba(255,107,107,0.11); }

.booking-detail {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 12px;
}

.detail-row strong {
  color: var(--text);
  text-align: right;
}

.detail-row.stack {
  flex-direction: column;
}

.detail-row.stack strong {
  text-align: left;
  font-weight: 600;
  line-height: 1.45;
}

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

/* Profile and contacts */
.profile-card,
.contacts-block {
  margin: 0 16px 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.profile-head h3,
.contact-main h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.profile-head p,
.contact-main p,
.contact-hours {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

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

.contact-hours {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

.contacts-grid {
  display: grid;
  gap: 8px;
  padding: 0 16px;
}

.contact-action {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.contact-action span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-action strong {
  min-width: 0;
  font-size: 13px;
  overflow-wrap: anywhere;
  text-align: right;
}

/* Dock */
#dock {
  position: fixed;
  left: 50%;
  bottom: calc(8px + var(--safe-bottom));
  transform: translateX(-50%);
  width: min(500px, calc(100% - 20px));
  height: var(--dock);
  z-index: 100;
  pointer-events: none;
}

.dock-inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.dock-item {
  min-width: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.dock-item svg {
  width: 20px;
  height: 20px;
}

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

.booking-open #dock {
  display: none;
}

/* Booking */
#booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.2s ease, transform 0.24s ease;
}

#booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-shell {
  width: min(100%, 540px);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  overflow-y: auto;
  background: var(--bg);
}

.booking-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 12px 16px 8px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
}

.booking-back {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.booking-step {
  padding: 8px 16px calc(28px + var(--safe-bottom));
}

.booking-step-animated {
  animation: fadeIn 0.16s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.booking-step h2 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.step-subtitle {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.booking-info-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 12px;
}

.booking-media {
  height: 220px;
  background: #050505;
  border-bottom: 1px solid var(--border);
}

.booking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-info-body {
  padding: 15px;
}

.booking-info-body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.12;
}

.booking-info-body p {
  margin: 9px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.price-line {
  margin-top: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.calendar,
.summary-card,
.booking-request-card,
.booking-field,
.terms-box,
.time-info {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.calendar {
  padding: 12px;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cal-header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cal-header strong {
  text-transform: capitalize;
  font-size: 14px;
}

.cal-weekdays,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.cal-weekdays {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cal-days {
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

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

.cal-day:disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: default;
}

.cal-day:not(:disabled):active,
.cal-day:not(:disabled):hover {
  background: var(--accent);
  color: var(--accent-ink);
}

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

.slot {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.slot.start,
.slot.end {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.slot.in-range {
  background: rgba(217,217,217,0.14);
}

.slot:disabled {
  color: var(--text-muted);
  opacity: 0.38;
  cursor: default;
}

.slot.taken {
  background: rgba(255,107,107,0.08);
}

.time-info {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.time-info strong {
  color: var(--text);
}

.booking-field {
  padding: 14px;
}

.booking-field .form-input {
  margin: 0;
}

.summary-card {
  padding: 14px;
  margin-bottom: 10px;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 13px;
}

.summary-row span,
.summary-total span {
  color: var(--text-muted);
}

.summary-row strong,
.summary-total strong {
  color: var(--text);
  text-align: right;
}

.summary-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 16px;
  font-weight: 800;
}

.terms-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.terms-box input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.booking-request-card {
  padding: 12px;
  margin-bottom: 10px;
}

.booking-request-card .form-input {
  min-height: 150px;
  margin: 0;
}

.booking-success {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 18px calc(36px + var(--safe-bottom));
  text-align: center;
}

.success-mark {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.booking-success h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.booking-success p {
  max-width: 300px;
  margin: 10px 0 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* Dialog and toast */
#dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

#dialog-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-card {
  width: min(340px, 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 20px;
  text-align: center;
}

.confirm-card h2 {
  margin: 0;
  font-size: 20px;
}

.confirm-card p {
  margin: 9px 0 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.dialog-actions {
  display: flex;
  gap: 8px;
}

.dialog-actions > * {
  flex: 1;
}

#toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock) + var(--safe-bottom) + 22px);
  z-index: 400;
  transform: translateX(-50%) translateY(12px);
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

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

@media (min-width: 620px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-media img {
    height: 150px;
  }
}
