:root {
  --orange: #e35100;
  --orange-hover: #c94700;
  --orange-logo: #e9531e;
  --blue: #2869d1;
  --blue-hover: #235bb2;
  --blue-logo: #1f6eb4;
  --green: #12b052;
  --text: #383838;
  --muted: #959ea9;
  --line: #e6e6e6;
  --line-strong: #d7d7d7;
  --bg: #f7f7f7;
  --warm: #fff0e5;
  --white: #fff;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 72px;
  --wrap: 1280px;
  --cream: #f6eee6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }
button, input, select, textarea { font-family: inherit; }
.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.promo { display: none; }
.header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.logo {
  display: flex;
  color: var(--orange-logo);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.logo svg { width: 168px; height: 26px; display: block; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 500;
  transition: background .15s, color .15s, box-shadow .15s, transform .15s;
  text-decoration: none;
}
.btn:disabled { opacity: .55; cursor: default; }
.search {
  flex: 1 1 420px;
  position: relative;
  min-width: 180px;
  max-width: 560px;
}
.search input {
  width: 100%;
  height: 40px;
  border: 1px solid #ececec;
  background: #f6f6f6;
  border-radius: 999px;
  padding: 0 40px 0 16px;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.search input:focus { border-color: #f3d4c2; background: #fff; }
.search button {
  position: absolute;
  right: 6px;
  top: 4px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #959ea9;
  cursor: pointer;
}
.header-meta {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
}
.stores-link {
  color: var(--text);
  font-size: 15px;
  margin-right: 30px;
  white-space: nowrap;
}
.stores-link:hover { color: var(--text); }
.header-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 6px 8px;
  margin-right: 16px;
}
.header-contacts:hover { background: #f2f2f2; }
.help-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 15px;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0 9px 0 4px;
  cursor: pointer;
  font-family: inherit;
}
.help-link:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #d9d9d9;
}
.help-link:hover { color: var(--text); }
.help-chevron { display: block; color: #383838; }
.hdr-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.hdr-msg img { display: block; width: 24px; height: 24px; }
.hdr-msg:hover { opacity: .86; }
.login-link {
  color: var(--orange);
  font-weight: 500;
  font-size: 15px;
  margin-right: 22px;
  white-space: nowrap;
  width: 66px;
}
.login-link:hover { color: var(--orange); }
.icon-btn {
  border: 0;
  background: transparent;
  color: #3e3e3d;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 5px;
}
.icon-btn:hover { color: var(--orange); }
.fav-btn { margin-right: 6px; }
.cart-btn { margin-right: -5px; }
.orange-bar {
  background: var(--orange);
}
.nav-cats {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: auto;
  min-height: 54px;
  font-size: 15px;
  font-weight: 500;
}
.nav-cats a { color: #fff; white-space: nowrap; }
.nav-cats a:hover, .nav-cats a.active { color: #fff4ed; }
.nav-cats .spacer { margin-left: auto; }
.nav-city, .nav-delivery {
  color: #fff !important;
  font-weight: 500;
  font-size: 13px;
}
button.nav-city {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.nav-delivery {
  background: rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 6px 12px;
}

/* Breadcrumbs */
.crumbs {
  padding: 18px 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }

/* Hero */
.hero-band {
  background: var(--cream);
  border-radius: 28px;
  padding: 8px 8px 8px 48px;
  margin: 18px 0 28px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0 12px;
}
.badge-24 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
}
.badge-24 i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(18, 176, 82, .18);
}
.section-kicker {
  color: var(--orange);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero p.lead {
  margin: 0 0 24px;
  font-size: 18px;
  color: #64676c;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.btn-lg {
  height: 48px;
  padding: 0 22px;
  font-size: 15px;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); color: #fff; }
.btn-tg {
  background: #229ed9;
  color: #fff;
}
.btn-tg:hover { background: #1b8fc6; color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid #eadfd4;
}
.btn-ghost:hover { border-color: #d8c4b2; color: var(--text); }
.hero-note {
  font-size: 14px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: var(--orange-logo);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.hero-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero-chip strong { display: block; font-size: 15px; }
.hero-chip span { font-size: 13px; color: #64676c; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 0 40px;
}
.trust-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.trust-item b { display: block; margin-bottom: 4px; }
.trust-item span { font-size: 14px; color: #64676c; }

/* Sections */
section { padding: 20px 0 56px; }
.section-kicker {
  color: var(--orange);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0 0 28px;
  color: #64676c;
  max-width: 780px;
}
.h2-phone {
  color: inherit;
  white-space: nowrap;
  border-bottom: 2px solid #f3d4c2;
}
.h2-phone:hover { color: var(--orange); }

.channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.chat-wide { padding: 28px 32px; }
.chat-wide > p { max-width: none; }
.msg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.msg-grid .msg-link { margin-bottom: 0; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.card.featured {
  background: linear-gradient(180deg, #fff8f3 0%, #fff 48%);
  border-color: #f3d4c2;
}
.card h3 { margin: 0 0 8px; font-size: 22px; }
.phone-xl {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 10px 0 6px;
}
.phone-xl:hover { color: var(--orange); }
.card p { margin: 0 0 16px; color: #64676c; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.tg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3fbff;
  border: 1px solid #d5eef8;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  margin-bottom: 10px;
}
.tg-link:hover { color: var(--text); border-color: #229ed9; }
.tg-link code {
  color: var(--blue);
  font-family: inherit;
  font-weight: 500;
}
.msg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  margin-bottom: 10px;
  border: 1px solid var(--line);
}
.msg-link:last-child { margin-bottom: 0; }
.msg-link:hover { color: var(--text); }
.msg-link strong { display: block; font-size: 15px; }
.msg-link span { font-size: 13px; color: #64676c; }
.msg-tg { background: #f3fbff; border-color: #d5eef8; }
.msg-tg:hover { border-color: #229ed9; }
.msg-wa { background: #f3fbf6; border-color: #cfeedd; }
.msg-wa:hover { border-color: #25d366; }
.msg-max { background: #f4f6ff; border-color: #d8def8; }
.msg-max:hover { border-color: #4b5efc; }
.msg-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 28, 24, .45);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.modal-card.featured {
  background: linear-gradient(180deg, #fff8f3 0%, #fff 48%);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #959ea9;
  cursor: pointer;
}
.modal-close:hover { color: var(--text); }
body.modal-open { overflow: hidden; }

.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.topic {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.topic .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.topic h3 { margin: 0 0 6px; font-size: 17px; }
.topic p { margin: 0; color: #64676c; font-size: 14px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}
.step {
  background: var(--bg);
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: #64676c; font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ok-list, .alert-list { list-style: none; margin: 0; padding: 0; }
.ok-list li, .alert-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}
.ok-list li:last-child, .alert-list li:last-child { border-bottom: 0; }
.check { color: var(--green); font-weight: 700; }
.warn { color: #d44d4d; font-weight: 700; }
.alert-card {
  border-color: #f3cfcf;
  background: #fff8f8;
}
.clinic-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.clinic {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.clinic b { display: block; margin-bottom: 4px; }
.clinic span { color: #64676c; font-size: 14px; }

.phones-box {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
}
.phones-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}
.phones-head input {
  height: 44px;
  width: min(320px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}
.phones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.phone-cell {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.phone-cell span { color: #64676c; font-size: 14px; }
.phone-cell a { font-weight: 500; color: var(--text); white-space: nowrap; }
.phone-cell a:hover { color: var(--orange); }
.phone-cell.hidden { display: none; }

.faq { display: grid; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}
.faq-item button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #959ea9;
  border-bottom: 2px solid #959ea9;
  transform: rotate(45deg);
  margin-top: -4px;
  flex: 0 0 auto;
}
.faq-item.open button::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item .answer {
  display: none;
  padding: 0 18px 16px;
  color: #64676c;
}
.faq-item.open .answer { display: block; }

.form-card label {
  display: block;
  font-size: 13px;
  margin: 0 0 6px;
  color: #64676c;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 15px;
}
.form-card textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-ok {
  display: none;
  background: #eef8f1;
  color: #1f7a42;
  border-radius: 10px;
  padding: 14px;
  margin-top: 8px;
}

.disclaimer {
  font-size: 13px;
  color: #64676c;
  background: var(--bg);
  border-radius: 12px;
  padding: 16px 18px;
}

.cta-band {
  background: linear-gradient(90deg, #e9531e 0%, #e35100 55%, #1f6eb4 160%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.88); }
.cta-band .btn-primary { background: #fff; color: var(--orange); }
.cta-band .btn-primary:hover { background: #fff4ed; color: var(--orange); }
.cta-band .btn-tg { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.cta-band .btn-tg:hover { background: rgba(255,255,255,.24); color: #fff; }

footer {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
  padding: 40px 0 80px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
footer h4 { margin: 0 0 12px; font-size: 15px; }
footer a, footer p { color: #64676c; font-size: 14px; display: block; margin: 0 0 8px; }
footer a:hover { color: var(--orange); }
.footer-copy { margin-top: 28px; color: var(--muted); font-size: 13px; }

.help-fab, .fab, .help-panel { display: none !important; }
html.jivo-ready .jivo-fallback { display: none !important; }
.jivo-fallback {
  position: fixed;
  right: 0;
  bottom: 120px;
  z-index: 55;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.jivo-tab {
  width: 44px;
  min-height: 220px;
  border: 0;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #2b2b2b 0%, #e35100 78%, #f26a1a 100%);
  color: #fff;
  cursor: pointer;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: -4px 8px 24px rgba(0,0,0,.18);
}
.jivo-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.25;
}
.jivo-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b052;
  box-shadow: 0 0 0 3px rgba(18,176,82,.22);
  flex: 0 0 auto;
}
.jivo-menu {
  width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  overflow: hidden;
}
.jivo-menu[hidden], .jivo-window[hidden] { display: none; }
.jivo-menu a, .jivo-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.jivo-menu a:last-child, .jivo-menu button:last-child { border-bottom: 0; }
.jivo-menu a:hover, .jivo-menu button:hover { background: #fafafa; color: var(--text); }
.jivo-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.jivo-window {
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.jivo-head {
  background: linear-gradient(90deg, #e35100, #1a1a1a);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.jivo-head strong { display: block; font-size: 15px; }
.jivo-head span { font-size: 12px; opacity: .85; }
.jivo-head .jivo-online { margin-left: auto; }
.jivo-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4b4b4b;
  display: grid;
  place-items: center;
}
.jivo-x {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.jivo-head { padding-left: 40px; }
.jivo-body {
  flex: 1;
  background: #f6f6f6;
  padding: 18px 16px;
  overflow: auto;
}
.jivo-sys {
  font-size: 13px;
  color: #8a8a8a;
  margin: 0 0 14px 36px;
}
.jivo-bubble {
  background: #fff;
  border-radius: 0 14px 14px 14px;
  padding: 10px 12px;
  max-width: 80%;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  font-size: 14px;
}
.jivo-form {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #eee;
}
.jivo-form input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 14px;
  padding: 8px 0;
}
.jivo-form button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #12b052;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 45;
  gap: 8px;
}
.mobile-cta .btn { flex: 1; height: 46px; }

.bento-wrap { position: relative; flex: 0 0 auto; }
.bento {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--orange-logo);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 8px;
}
.bento:hover { background: #fff4ed; }
.bento-x { display: none; font-size: 28px; line-height: 1; color: var(--orange-logo); }
.bento.open .bento-grid { display: none; }
.bento.open .bento-x { display: block; }
.bento-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  z-index: 60;
}
.bento-panel[hidden] { display: none; }
.svc {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-areas:
    "ico title"
    ". desc";
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--text);
  min-height: 104px;
  text-decoration: none;
}
.svc:hover { color: var(--text); filter: brightness(.98); }
.svc-ico {
  grid-area: ico;
  width: 24px;
  height: 26px;
  margin-top: 1px;
}
.svc-ico svg { width: 24px; height: 26px; display: block; }
.svc strong {
  grid-area: title;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.svc strong + span {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.35;
  color: #64676c;
}
.svc-word { grid-area: ico / ico / title / title; font-size: 20px; }
.svc-smack {
  grid-template-areas:
    "title title"
    "desc desc";
}
.svc-smack span {
  grid-area: desc;
}
.svc-walk { background: #fff6e8; }
.svc-walk .svc-ico { color: #f5b400; }
.svc-hotel { background: #eaf6ef; }
.svc-hotel .svc-ico { color: #2f6a5c; }
.svc-vet { background: #eaf4ff; }
.svc-vet .svc-ico { color: #2f7bdc; }
.svc-groom { background: #f3eefe; }
.svc-groom .svc-ico { color: #6b4bd1; }
.svc-care { background: #fdecef; }
.svc-care .svc-ico { color: #d60f3c; }
.svc-smack { background: #f4f4f4; }

@media (max-width: 1024px) {
  .hero, .split, .footer-grid, .clinic-row { grid-template-columns: 1fr 1fr; }
  .trust, .topics, .steps, .phones-grid, .msg-grid { grid-template-columns: 1fr 1fr; }
  .header-phone, .city { display: none; }
  .bento-panel { width: min(520px, calc(100vw - 24px)); }
}
@media (max-width: 760px) {
  .wrap { width: calc(100% - 28px); }
  .header-main { min-height: 64px; gap: 10px; }
  .logo svg { width: 140px; }
  .search, .header-meta, .orange-bar, .promo { display: none; }
  .hero, .channels, .split, .footer-grid, .clinic-row, .trust, .topics, .steps, .phones-grid, .form-row, .msg-grid {
    grid-template-columns: 1fr;
  }
  .chat-wide { padding: 20px; }
  h2 .h2-phone { display: inline; }
  .hero h1 { font-size: 32px; }
  .hero-band { padding: 8px; }
  .hero { padding: 16px 12px 8px; }
  h2 { font-size: 26px; }
  .phone-xl { font-size: 26px; }
  .phones-head { flex-direction: column; align-items: stretch; }
  .phones-head input { width: 100%; }
  .cta-band { flex-direction: column; align-items: stretch; padding: 22px; }
  .mobile-cta { display: flex; }
  .jivo-fallback { bottom: 90px; }
  .jivo-window { width: min(360px, calc(100vw - 20px)); height: min(520px, calc(100vh - 120px)); }
  body { padding-bottom: 70px; }
  .hero-visual, .hero-visual img { min-height: 220px; }
}
