/* Раздел «Услуги» — та же палитра и типографика, что на остальных страницах сайта
   (тёмный градиент, циан-акцент, Onest в заголовках, стеклянные карточки). Стиль вынесен
   в отдельный файл: страниц в разделе четыре, повторять его в каждой — значит однажды
   поправить в трёх и забыть про четвёртую. */
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100dvh; color: #e3e0f4;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0A2E 100%);
  font-family: "IBM Plex Sans", sans-serif;
}
a { color: #00F0FF; text-decoration: none; }
a:hover { color: #7df4ff; }
.ambient {
  position: fixed; width: 360px; height: 360px; border-radius: 999px;
  filter: blur(120px); opacity: 0.18; pointer-events: none; z-index: -1;
}
.ambient-cyan { top: -120px; right: -80px; background: #00F0FF; }
.ambient-magenta { bottom: -140px; left: -120px; background: #FF24E4; }
.topbar, .card, footer {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.topbar {
  width: min(1040px, calc(100% - 32px)); margin: 16px auto 0; border-radius: 18px;
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  font-family: "Onest", sans-serif; color: #fff; letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 13px;
}
.topbar nav, .crumbs, .footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.topbar nav a, .footer-links a {
  color: rgba(255,255,255,0.58); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.topbar nav a:hover, .footer-links a:hover { color: #00F0FF; }
.topbar nav a[aria-current="page"] { color: #00F0FF; }
.shell { width: min(960px, calc(100% - 32px)); margin: 30px auto 56px; }
.crumbs { margin: 0 0 14px; font-size: 12px; color: rgba(255,255,255,0.42); gap: 6px; }
.crumbs a { color: rgba(255,255,255,0.55); }
.eyebrow {
  margin: 0 0 10px; color: rgba(0,240,255,0.72); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
h1, h2, h3 { font-family: "Onest", sans-serif; font-weight: 400; color: #fff; }
h1 { margin: 0; font-size: clamp(28px, 5vw, 48px); line-height: 1.06; }
h2 { margin: 34px 0 14px; font-size: clamp(20px, 3vw, 26px); }
h3 { margin: 0 0 6px; font-size: 17px; }
p, li { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.65; }
.lead { margin: 18px 0 0; color: rgba(255,255,255,0.78); font-size: 17px; max-width: 760px; }
.card { border-radius: 18px; padding: clamp(16px, 3vw, 26px); }
.grid { display: grid; gap: 14px; margin-top: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.service-card { display: block; transition: border-color 160ms ease, transform 160ms ease; }
.service-card:hover { border-color: rgba(0,240,255,0.45); transform: translateY(-2px); }
.service-card h3 { color: #fff; }
.service-card p { margin: 0; font-size: 14px; }
.service-card .go { display: inline-block; margin-top: 12px; font-size: 13px; color: #00F0FF; }
.steps { counter-reset: step; list-style: none; margin: 18px 0 0; padding: 0; }
.steps li { position: relative; margin: 0 0 14px; padding-left: 42px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -1px; width: 28px; height: 28px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,240,255,0.12); border: 1px solid rgba(0,240,255,0.4);
  color: #00F0FF; font-size: 13px; font-family: "Onest", sans-serif;
}
.price-row {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 8px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-row:last-child { border-bottom: 0; }
.price-row .val { color: #00F0FF; font-family: "Onest", sans-serif; white-space: nowrap; }
/* Не цена, а пояснение — циан в этой колонке читается как ссылка, хотя кликать там нечего. */
.price-row .val.plain { color: rgba(255,255,255,0.6); }
.note {
  margin: 18px 0 0; padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(0,240,255,0.28); background: rgba(0,240,255,0.06);
  color: rgba(255,255,255,0.82); font-size: 14px;
}
.cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  padding: 13px 22px; border-radius: 999px; background: #00F0FF; color: #04121a;
  font-family: "Onest", sans-serif; font-size: 14px; letter-spacing: 0.04em;
  box-shadow: 0 0 30px rgba(0,240,255,0.35);
}
.cta:hover { background: #7df4ff; color: #04121a; }
.cta-ghost {
  background: transparent; color: #00F0FF; border: 1px solid rgba(0,240,255,0.45); box-shadow: none;
}
.cta-ghost:hover { background: rgba(0,240,255,0.1); color: #7df4ff; }
.faq { margin-top: 10px; }
.faq details {
  border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 0;
}
.faq summary {
  cursor: pointer; color: #fff; font-family: "Onest", sans-serif; font-size: 16px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: #00F0FF; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; }
.linkset { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px 14px; }
.linkset a { font-size: 14px; }
footer { width: min(1040px, calc(100% - 32px)); margin: 0 auto 24px; border-radius: 18px; padding: 18px; }
.footer-copy { margin: 0 0 12px; color: rgba(255,255,255,0.42); font-size: 12px; }
@media (max-width: 640px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .cta { width: 100%; justify-content: center; }
}
