/* Мобильная адаптивность, минимальный CSS, быстрая загрузка */
:root {
  color-scheme: light;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #111;
  --header-offset: 88px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}
body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  background: #f8fafc;
}

/* Anchor targets: account for fixed header */
main [id],
.section[id],
.map-section[id],
.cards-carousel-section[id],
.about-section[id],
.reviews-section[id] {
  scroll-margin-top: var(--header-offset);
}
a {
  color: inherit;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font: inherit;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.header {
  padding: 20px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 180px;
  width: 180px;
  min-height: 56px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: #0f172a;
  text-decoration: none;
}

.logo__image {
  width: 180px;
  min-width: 180px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.logo__image--light {
  display: none;
}
.nav {
  display: none;
}
.nav.is-open {
  display: block;
}
.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__quick {
  display: none;
}

.nav__info {
  display: none;
}

.nav__reviews {
  display: none;
}

.nav__link {
  color: #0f172a;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
  transition: color .2s ease;
}
.nav__link:hover {
  color: #2563eb;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
}
.button--outline {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.button--light {
  background: #fff;
  color: #0f172a;
}
.hero {
  padding: 88px 0 56px;
}
.hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 780px;
}
.hero__text {
  margin: 24px 0 0;
  max-width: 680px;
  color: #475569;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
}
.card__text {
  margin: 0;
  color: #475569;
}
.section {
  padding: 48px 0;
}
.section--light {
  background: #f8fafc;
}
.section--dark {
  background: #0b1120;
  color: #fff;
}
.section--dark .card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.section--dark .card__text {
  color: #cbd5e1;
}
.section--accent {
  background: #eef6ff;
}
.section__title {
  margin: 0 0 24px;
  font-size: 2rem;
}
.form {
  display: grid;
  gap: 16px;
}
.form input:not([type="checkbox"]),
.form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
}
.form button {
  width: fit-content;
}

.form-consent {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #475569;
  font-size: .8rem;
  line-height: 1.4;
}

.form-consent input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  min-width: 14px;
  max-width: 14px;
  min-height: 14px;
  max-height: 14px;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  accent-color: #2563eb;
  transform: none;
  box-shadow: none;
}

.form-consent a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.form-consent a:hover {
  text-decoration: underline;
}
.footer {
  padding: 36px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 14px;
  font-size: .82rem;
}

.footer__legal a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.footer__legal a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
  }
  .hero {
    padding-top: 100px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  [data-menu-toggle] {
    display: none;
  }
}
@media (max-width: 680px) {
  .header__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .nav__list {
    flex-direction: column;
    gap: 14px;
  }
  .hero {
    padding-top: 60px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.section__lead {
  max-width: 720px;
  margin: -10px 0 28px;
  color: #475569;
}

.section--dark .section__lead {
  color: #cbd5e1;
}

.work-gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.work-gallery__head .section__title {
  margin-bottom: 0;
}

.work-gallery__head .section__lead {
  margin: 12px 0 0;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-gallery__item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.work-gallery__image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform .35s ease;
}

.work-gallery__item:hover .work-gallery__image {
  transform: scale(1.04);
}

.work-gallery__item--clickable {
  cursor: zoom-in;
}

.work-gallery__item--clickable:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

.work-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 18px 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .88));
}

.work-gallery__caption h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.work-gallery__caption p {
  margin: 6px 0 0;
  color: #dbeafe;
  font-size: .86rem;
  line-height: 1.4;
}

.work-gallery__controls,
.work-gallery__dots {
  display: none;
}

.work-gallery-section--single .work-gallery__controls,
.work-gallery-section--single .work-gallery__dots {
  display: none;
}

.work-gallery__arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.work-gallery__arrow:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .9);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 16px;
  width: min(1180px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  align-items: center;
}

.gallery-lightbox__figure {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.gallery-lightbox__image {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 8px;
  background: #020617;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.gallery-lightbox__caption {
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.gallery-lightbox__counter {
  color: #93c5fd;
  font-size: .82rem;
  font-weight: 800;
}

.gallery-lightbox__title {
  font-size: 1.05rem;
}

.gallery-lightbox__text {
  color: #cbd5e1;
  font-size: .92rem;
}

.gallery-lightbox__close,
.gallery-lightbox__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__arrow:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.gallery-lightbox__close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-100%);
}

.gallery-lightbox__close:hover {
  transform: translateY(calc(-100% - 2px));
}

.gallery-lightbox__arrow {
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  line-height: 1;
}

.messengers {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 50;
}

.messengers__link,
.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.messengers__link:hover,
.contact-action:hover {
  transform: translateY(-2px);
  opacity: .95;
}

.contact-action img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
}

.contact-action__phone-mark,
.contact-action__request-mark {
  display: inline-flex;
  width: 32px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, .18);
  font-size: .66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.messengers__link--whatsapp {
  background: #25d366;
}

.messengers__link--telegram {
  background: #0088cc;
}

.messengers__link--viber {
  background: #7f5af0;
}

.contact-action--phone {
  background: #2563eb;
}

.contact-action--whatsapp {
  background: #40c351;
}

.contact-action--request {
  background: #40c351;
}

.contact-action--telegram {
  background: #29b6f6;
}

.contact-action--max {
  background: #0b63f6;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions--cta {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  min-width: min(100%, 410px);
}

.contact-actions--hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 0;
}

.contact-actions--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.contact__card,
.contact__form {
  height: 100%;
  min-width: 0;
}

.contact__card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 30px;
}

.contact__details {
  display: grid;
  gap: 12px;
}

.contact__item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.contact__item strong {
  color: #2563eb;
  font-size: .78rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact__item a,
.contact__item span {
  min-width: 0;
  color: #0f172a;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact__form {
  gap: 12px;
  padding: 22px;
}

.contact__form input:not([type="checkbox"]),
.contact__form textarea {
  padding: 13px 14px;
}

.contact__form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact__form .button {
  width: 100%;
}

@media (min-width: 981px) {
  #contact .contact__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    align-items: stretch;
  }
}

@media (max-width: 680px) {
  .messengers {
    right: 8px;
    bottom: 8px;
    min-width: 160px;
  }
  .messengers__link {
    min-width: 150px;
    padding: 12px 14px;
  }

  .contact__card {
    gap: 16px;
    padding: 18px;
  }

  .contact__details {
    gap: 8px;
  }

  .contact__item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 12px;
  }

  .contact__item strong {
    font-size: .68rem;
  }

  .contact__item a,
  .contact__item span {
    font-size: .9rem;
  }

  .contact__form {
    gap: 10px;
    padding: 16px;
  }

  .contact__form input:not([type="checkbox"]),
  .contact__form textarea {
    padding: 11px 12px;
    font-size: .9rem;
  }

  .contact__form textarea {
    min-height: 86px;
  }

  .contact__form .form-consent {
    grid-template-columns: 13px minmax(0, 1fr);
    gap: 7px;
    font-size: .72rem;
    line-height: 1.3;
  }

  .contact__form .form-consent input[type="checkbox"] {
    width: 13px;
    height: 13px;
    min-width: 13px;
    max-width: 13px;
    min-height: 13px;
    max-height: 13px;
    margin-top: 2px;
    padding: 0;
    font-size: 13px;
  }

  .contact__form .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: .92rem;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.82), rgba(15, 23, 42, 0.48)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, .1), rgba(3, 7, 18, .2));
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  color: #2563eb;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

.cta-strip {
  padding: 24px 0;
  background: #0f172a;
  color: #fff;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.cta-strip__text {
  margin: 8px 0 0;
  color: #cbd5e1;
  max-width: 720px;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid #2563eb;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.logos-grid,
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.logos-grid--clients {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-badge,
.client-logo {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.brand-logo,
.logo-badge .brand-logo,
.client-logo .brand-logo,
.brand-logo img,
.client-icon.brand-logo img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: center;
  animation: none;
}

.logo-badge__name {
  display: none;
}

.service-icon,
.cert-icon,
.client-icon {
  font-size: 1.65rem;
}

.service-price {
  margin: 18px 0 0;
  color: #2563eb;
  font-weight: 800;
}

.prices-section {
  background: #f8fafc;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion__item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.faq-accordion:not(.is-expanded) .faq-accordion__item--extra {
  display: none;
}

.faq-accordion__more {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: #93c5fd;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.faq-accordion__more:hover,
.faq-accordion__more:focus-visible {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.faq-accordion__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  line-height: 1.25;
}

.faq-accordion__toggle:hover,
.faq-accordion__toggle:focus-visible {
  background: rgba(255, 255, 255, .05);
}

.faq-accordion__icon {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, .2);
  color: #93c5fd;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.faq-accordion__icon::after {
  transform: rotate(90deg);
}

.faq-accordion__item.is-open .faq-accordion__icon {
  background: #2563eb;
  color: #fff;
}

.faq-accordion__item.is-open .faq-accordion__icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-accordion__panel {
  display: none;
  padding: 0 18px 18px;
}

.faq-accordion__item.is-open .faq-accordion__panel {
  display: block;
}

.faq-accordion__panel p {
  margin: 0;
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.55;
}

.legal-page {
  padding-top: 76px;
  background: #f8fafc;
}

.legal-hero {
  padding: 72px 0 34px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, .95), rgba(224, 242, 254, .82)),
    #eef6ff;
}

.legal-hero__eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.legal-hero__title {
  max-width: 920px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
}

.legal-hero__lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.55;
}

.legal-section {
  padding-top: 34px;
}

.legal-document {
  display: grid;
  gap: 14px;
  max-width: 900px;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.legal-document h2 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: clamp(1.18rem, 3vw, 1.45rem);
  line-height: 1.25;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  margin: 0;
  color: #475569;
  font-size: .96rem;
  line-height: 1.65;
}

.legal-document strong {
  color: #0f172a;
}

.prices {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.prices__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.prices__head .section__title {
  margin-bottom: 0;
}

.prices__head .section__lead {
  max-width: 700px;
  margin: 10px 0 0;
}

.prices__button {
  flex: 0 0 auto;
  display: none;
  padding: 12px 16px;
}

.prices__list {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #f8fafc;
}

.prices__row {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.prices__row:hover,
.prices__row.is-open {
  border-color: rgba(37, 99, 235, .24);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .1);
}

.prices__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.prices__row.is-open .prices__toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, .34) 0%, rgba(239, 246, 255, .3) 100%);
}

.prices__summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 12px;
  align-items: center;
  min-width: 0;
}

.prices__title,
.prices__main h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.prices__details {
  display: none;
  padding: 0 18px 17px;
}

.prices__row.is-open .prices__details {
  display: grid;
  gap: 14px;
}

.prices__details p,
.prices__main p {
  margin: 0;
  color: #64748b;
  font-size: .88rem;
  line-height: 1.4;
}

.prices__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eef6ff;
  color: #2563eb;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.prices__value {
  color: #2563eb;
  font-size: 1.05rem;
  line-height: 1.2;
  white-space: nowrap;
}

.prices__write {
  width: fit-content;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 8px;
}

.prices__icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef6ff;
  color: #2563eb;
}

.prices__icon::before,
.prices__icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.prices__icon::after {
  transform: rotate(90deg);
}

.prices__row.is-open .prices__icon {
  background: #2563eb;
  color: #fff;
}

.prices__row.is-open .prices__icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.prices__note {
  margin: 0;
  padding: 14px 24px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  background: #f8fafc;
  color: #64748b;
  font-size: .84rem;
  line-height: 1.45;
}

body.price-popup-open {
  overflow: hidden;
}

.price-popup {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: none;
  place-items: center;
  padding: 18px;
}

.price-popup.is-open {
  display: grid;
}

.price-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .72);
}

.price-popup__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 34px 100px rgba(2, 6, 23, .34);
}

.price-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.price-popup__close:hover {
  background: #2563eb;
  color: #fff;
}

.price-popup__eyebrow {
  margin: 0;
  padding-right: 42px;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-popup__title {
  margin: 0;
  padding-right: 42px;
  color: #0f172a;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.12;
}

.price-popup__price,
.price-popup__note {
  margin: 0;
  color: #475569;
  font-size: .95rem;
  line-height: 1.45;
}

.price-popup__price strong {
  color: #2563eb;
  white-space: nowrap;
}

.price-popup__form {
  gap: 10px;
}

.price-popup__input {
  min-height: 50px;
}

.price-popup__submit {
  width: 100%;
  min-height: 52px;
}

.dsg-quiz-section {
  background: #fff;
}

.dsg-quiz {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.dsg-quiz-contact-cta {
  display: none;
}

.dsg-quiz__intro {
  min-width: 0;
}

.dsg-quiz__intro .section__title {
  margin-bottom: 18px;
}

.dsg-quiz__intro .section__lead {
  margin: 0;
}

.dsg-quiz__panel,
.dsg-quiz__result {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .08);
}

.dsg-quiz__progress {
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
}

.dsg-quiz__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #2563eb;
  transition: width .25s ease;
}

.dsg-quiz__step {
  margin: 18px 0 6px;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.dsg-quiz__question {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.2;
}

.dsg-quiz__options {
  display: grid;
  gap: 14px;
}

.dsg-quiz__select-field {
  display: grid;
  gap: 10px;
}

.dsg-quiz__select-label {
  color: #475569;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.25;
}

.dsg-quiz__select {
  width: 100%;
  min-height: 54px;
  padding: 0 44px 0 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 50%, #2563eb 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, #2563eb 50%, transparent 50%) right 12px center / 7px 7px no-repeat,
    #fff;
  color: #0f172a;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  appearance: none;
}

.dsg-quiz__select:focus-visible {
  outline: 3px solid #bfdbfe;
  border-color: #2563eb;
}

.dsg-quiz__next {
  min-width: 160px;
  min-height: 48px;
}

.dsg-quiz__next:disabled {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
  box-shadow: none;
}

.dsg-quiz__option {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dsg-quiz__option::after {
  content: '›';
  flex: 0 0 auto;
  color: #2563eb;
  font-size: 1.35rem;
  line-height: 1;
}

.dsg-quiz__option:hover,
.dsg-quiz__option:focus-visible {
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 16px 36px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}

.dsg-quiz__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 18px;
  align-items: stretch;
}

.dsg-quiz__actions .button {
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.1;
  white-space: nowrap;
}

.dsg-quiz__back[hidden],
.dsg-quiz__reset[hidden],
.dsg-quiz__result[hidden] {
  display: none;
}

.dsg-quiz__result {
  grid-column: 2;
  display: grid;
  gap: 14px;
}

.dsg-quiz__result-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.2;
}

.dsg-quiz__result-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.dsg-quiz__result-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dsg-quiz__result-dsg {
  color: #2563eb;
  font-size: 1.8rem;
  line-height: 1;
}

.dsg-quiz__result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dsg-quiz__pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #eef6ff;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
}

.dsg-quiz__result-text,
.dsg-quiz__note {
  margin: 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.45;
}

.dsg-quiz__note {
  padding: 12px 14px;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  background: #eef6ff;
}

body.dsg-quiz-popup-open {
  overflow: hidden;
}

.dsg-quiz-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  place-items: center;
  padding: 18px;
}

.dsg-quiz-popup.is-open {
  display: grid;
}

.dsg-quiz-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .72);
}

.dsg-quiz-popup__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 34px 100px rgba(2, 6, 23, .34);
}

.dsg-quiz-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.dsg-quiz-popup__close:hover {
  background: #2563eb;
  color: #fff;
}

.dsg-quiz-popup__eyebrow {
  margin: 0;
  padding-right: 42px;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.dsg-quiz-popup__title {
  margin: 0;
  padding-right: 42px;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.12;
}

.dsg-quiz-popup__car,
.dsg-quiz-popup__note {
  margin: 0;
  color: #475569;
  font-size: .95rem;
  line-height: 1.45;
}

.dsg-quiz-popup__summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: #f8fafc;
}

.dsg-quiz-popup__dsg {
  color: #2563eb;
  font-size: 1.6rem;
  line-height: 1;
}

.dsg-quiz-popup__form {
  gap: 10px;
}

.dsg-quiz-popup__input {
  min-height: 50px;
}

.dsg-quiz-popup__submit {
  width: 100%;
  min-height: 52px;
}

.reviews-section {
  overflow: hidden;
}

.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.reviews__head > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.reviews__head .section__title {
  margin-bottom: 0;
}

.reviews__head .section__lead {
  margin: 0;
}

.reviews__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.reviews__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #2563eb;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.reviews__arrow:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-1px);
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 8px;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.reviews__track > .review-card {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
  scroll-snap-align: start;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.reviews__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #2563eb;
}

.reviews-section--single .reviews__controls,
.reviews-section--single .reviews__dots {
  display: none;
}

.review-card__source,
.review-popup__source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 8px;
  background: #eef6ff;
  color: #2563eb;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}

.review-popup__source:hover {
  background: #2563eb;
  color: #fff;
}

.review-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 220px;
  cursor: pointer;
}

.review-card:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

.review-card__author {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}

.review-card__preview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-card__source {
  width: fit-content;
  margin-top: 2px;
}

body.review-open {
  overflow: hidden;
}

.review-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  padding: 20px;
}

.review-popup.is-open {
  display: grid;
}

.review-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .76);
  backdrop-filter: blur(10px);
}

.review-popup__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.review-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.review-popup__author {
  margin: 0;
  padding-right: 42px;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.2;
}

.review-popup__text {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.review-popup__source {
  width: fit-content;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 900px) {
  .logos-grid,
  .cert-grid,
  .logos-grid--clients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cta-strip__inner {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-strip__actions {
    justify-content: flex-start;
  }
  .contact-actions--cta,
  .contact-actions--hero,
  .contact-actions--inline {
    grid-template-columns: 1fr;
  }
  .logos-grid,
  .cert-grid,
  .logos-grid--clients {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .76);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.section--dark .card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.section--accent {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
}

.logos-grid,
.cert-grid {
  display: grid;
  gap: 18px;
}

.logos-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 20px 24px;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.cert-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.card--elevated {
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  margin-top: 24px;
}

.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button--wide {
  min-width: 240px;
}

.button--outline {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.button--outline:hover {
  background: rgba(37, 99, 235, 0.08);
}

@media (max-width: 980px) {
  .logos-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .logos-grid,
  .cert-grid,
  .cta {
    grid-template-columns: 1fr;
  }
  .cta {
    align-items: stretch;
  }
}

.hero,
.section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero.is-visible,
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card--accent {
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
}

.card--accent .card__title,
.card--accent .card__text {
  color: #fff;
}

#about {
  padding: 54px 0;
}

.about-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(248, 250, 252, .58)),
    linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(15, 23, 42, .02));
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 34px 86px rgba(15, 23, 42, .1);
}

.about-shell::before {
  content: '';
  position: absolute;
  inset: 18px auto 18px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #2563eb;
}

.about-main {
  min-width: 0;
}

#about .section__title,
.about-title {
  margin-bottom: 18px;
}

#about .card__text,
.about-lead {
  max-width: 720px;
  color: #475569;
  font-size: 1.04rem;
  line-height: 1.55;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.about-proof__item {
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.about-proof__item strong {
  display: block;
  color: #0f172a;
  font-size: 1.14rem;
  line-height: 1.1;
}

.about-proof__item span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: .82rem;
  font-weight: 700;
}

#about .feature-list,
.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  color: #475569;
  list-style: none;
}

#about .feature-list li,
.about-features li {
  position: relative;
  min-height: 68px;
  margin: 0;
  padding: 14px 14px 14px 44px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
  font-size: .92rem;
  line-height: 1.35;
}

#about .feature-list li::before,
.about-features li::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(37, 99, 235, .24);
  border-radius: 50%;
  background: #2563eb;
}

.about-features li span {
  display: block;
}

.about-aside {
  display: flex;
  align-items: center;
}

#about .card--accent,
.about-accent {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, .98), rgba(30, 64, 175, 1)),
    #2563eb;
  box-shadow: 0 30px 70px rgba(37, 99, 235, .24);
}

#about .card--accent::after,
.about-accent::after {
  content: '';
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

#about .card--accent .card__title,
.about-accent .card__title {
  position: relative;
  margin-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.2;
  z-index: 1;
}

#about .card--accent .card__text,
.about-accent .card__text {
  position: relative;
  max-width: 560px;
  color: rgba(255, 255, 255, .94);
  font-size: 1.02rem;
  line-height: 1.5;
  z-index: 1;
}

.about-accent__footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 1;
}

.about-accent__footer strong {
  color: #fff;
  font-size: 1.08rem;
  text-transform: none;
}

.feature-list {
  margin-top: 24px;
  padding-left: 20px;
  color: #475569;
  list-style: disc;
}

.feature-list li {
  margin-bottom: 12px;
}

.hero-actions .button--outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.messengers-inline .button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.logos-grid--clients {
  margin-top: 24px;
}

@media (max-width: 680px) {
  .hero,
  .section {
    transform: translateY(16px);
  }

  #about {
    padding: 34px 0;
  }

  .about-shell {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-shell::before {
    display: none;
  }

  #about .grid-2 {
    gap: 14px;
  }

  .about-proof {
    display: none;
  }

  #about .feature-list {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  #about .feature-list li {
    min-height: 0;
    padding: 10px 12px;
    border-left: 3px solid #2563eb;
  }

  #about .feature-list li::before {
    display: none;
  }

  #about .card--accent {
    min-height: 0;
    padding: 18px;
  }

  .about-aside {
    display: block;
    margin-top: 14px;
  }

  .about-accent__footer {
    display: none;
  }
}

/* Стили карточек услуг */
.card--service {
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.service-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 700;
  color: #2563eb;
  font-size: 1.1rem;
}

/* Клиентские логотипы с иконками */
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .58);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  gap: 8px;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.client-icon {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

.client-icon.brand-logo {
  animation: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.client-logo span:last-child {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  text-align: center;
}

/* Сертификаты с иконками */
.cert-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

/* Анимация карточек при входе */
.card {
  animation: slideInCard .6s ease-out backwards;
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Каскадная задержка для карточек */
.grid > .card:nth-child(1) { animation-delay: 0.1s; }
.grid > .card:nth-child(2) { animation-delay: 0.2s; }
.grid > .card:nth-child(3) { animation-delay: 0.3s; }
.grid > .card:nth-child(4) { animation-delay: 0.4s; }
.grid > .card:nth-child(5) { animation-delay: 0.5s; }
.grid > .card:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 680px) {
  .client-logo {
    min-height: 90px;
  }
  .service-price {
    font-size: 1rem;
  }

  .legal-page {
    padding-top: 64px;
  }

  .legal-hero {
    padding: 42px 0 24px;
  }

  .legal-document {
    padding: 20px;
  }
}

/* Mobile-first header and hero slider */
body.menu-open {
  overflow: hidden;
}

body.menu-open .messengers {
  opacity: 0;
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, .72);
  backdrop-filter: blur(12px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(540px, 100%);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  max-height: calc(100svh - 40px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .26);
  transform: translateY(14px);
  transition: transform .2s ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal__head {
  padding: 30px 72px 26px 28px;
  background:
    radial-gradient(circle at top right, rgba(41, 182, 246, .24), transparent 36%),
    linear-gradient(135deg, #0f172a 0%, #172554 100%);
  color: #fff;
}

.modal__eyebrow {
  margin: 0 0 8px;
  color: #38bdf8;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal__title {
  margin: 0;
  max-width: 420px;
  color: #fff;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1.1;
}

.modal__text {
  margin: 14px 0 22px;
  color: #cbd5e1;
}

.modal__form {
  box-shadow: none;
  padding: 22px 28px 0;
  background: transparent;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal__form input:not([type="checkbox"]),
.modal__form textarea {
  border-color: rgba(15, 23, 42, .12);
  background: #f8fafc;
}

.modal__form button {
  width: 100%;
}

.modal__note {
  margin: 14px 28px 26px;
  color: #64748b;
  font-size: .78rem;
}

@media (max-width: 680px) {
  .modal {
    padding: 0;
    align-items: end;
    justify-items: stretch;
  }

  .modal__dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - env(safe-area-inset-top, 0px));
    max-height: calc(100svh - env(safe-area-inset-top, 0px));
    border-radius: 16px 16px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .modal__head {
    flex-shrink: 0;
    padding: 16px 48px 12px 16px;
  }

  .modal__eyebrow {
    margin: 0 0 4px;
    font-size: .7rem;
  }

  .modal__title {
    font-size: 1.28rem;
    line-height: 1.15;
  }

  .modal__text {
    margin: 8px 0 0;
    font-size: .86rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .modal__form {
    gap: 8px;
    padding: 12px 16px 8px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .modal__form input:not([type="checkbox"]),
  .modal__form textarea {
    padding: 11px 12px;
    font-size: .92rem;
    min-height: 44px;
  }

  .modal__form textarea {
    min-height: 68px;
    max-height: 96px;
    resize: none;
  }

  .modal__form .form-consent {
    font-size: .72rem;
    gap: 7px;
    line-height: 1.3;
  }

  .modal__form .button {
    min-height: 46px;
    margin-top: 2px;
  }

  .modal__note {
    flex-shrink: 0;
    margin: 0;
    padding: 0 16px calc(10px + env(safe-area-inset-bottom, 0px));
    font-size: .68rem;
    line-height: 1.35;
  }

  .price-popup,
  .dsg-quiz-popup {
    padding: 0;
    align-items: end;
    justify-items: stretch;
  }

  .price-popup__dialog,
  .dsg-quiz-popup__dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - env(safe-area-inset-top, 0px));
    max-height: calc(100svh - env(safe-area-inset-top, 0px));
    gap: 10px;
    padding: 16px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-radius: 16px 16px 0 0;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .price-popup__close,
  .dsg-quiz-popup__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .price-popup__eyebrow,
  .dsg-quiz-popup__eyebrow {
    font-size: .7rem;
    padding-right: 40px;
  }

  .price-popup__title,
  .dsg-quiz-popup__title {
    font-size: 1.28rem;
    padding-right: 40px;
  }

  .price-popup__price,
  .price-popup__note,
  .dsg-quiz-popup__car,
  .dsg-quiz-popup__note {
    font-size: .86rem;
    line-height: 1.35;
  }

  .dsg-quiz-popup__summary {
    gap: 8px;
    padding: 12px;
  }

  .dsg-quiz-popup__dsg {
    font-size: 1.25rem;
  }

  .price-popup__form,
  .dsg-quiz-popup__form {
    gap: 8px;
  }

  .price-popup__input,
  .dsg-quiz-popup__input,
  .price-popup__form input:not([type="checkbox"]),
  .dsg-quiz-popup__form input:not([type="checkbox"]) {
    min-height: 44px;
    padding: 11px 12px;
    font-size: .92rem;
  }

  .price-popup__submit,
  .dsg-quiz-popup__submit {
    min-height: 46px;
  }

  .price-popup .form-consent,
  .dsg-quiz-popup .form-consent {
    font-size: .72rem;
    gap: 7px;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .modal__text {
    -webkit-line-clamp: 1;
  }

  .modal__note {
    display: none;
  }

  .dsg-quiz-popup__note,
  .price-popup__note {
    display: none;
  }
}

@media (max-width: 680px) and (max-height: 620px) {
  .modal__head {
    padding: 12px 44px 10px 14px;
  }

  .modal__title {
    font-size: 1.12rem;
  }

  .modal__text {
    display: none;
  }

  .modal__form textarea {
    min-height: 56px;
    max-height: 72px;
  }
}

.header {
  padding: 12px 0;
  background: rgba(248, 250, 252, .46);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  backdrop-filter: blur(30px) saturate(170%);
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .055);
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
}

.header__inner {
  min-height: 52px;
}

.header__phone {
  padding: 11px 16px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__list {
  align-items: center;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 600;
}

.hero-slider {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #0f172a;
  color: #fff;
  opacity: 1;
  transform: none;
  position: relative;
  overflow: hidden;
}

.hero-slider__track,
.hero-slide {
  min-height: inherit;
}

.hero-slider__track {
  position: relative;
  isolation: isolate;
  height: 100vh;
  height: 100svh;
  min-height: inherit;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 72% 50%, rgba(41, 182, 246, .16), transparent 28%),
    linear-gradient(90deg, rgba(3, 7, 18, .94), rgba(15, 23, 42, .72) 48%, rgba(15, 23, 42, .34)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: scale(1.018);
  pointer-events: none;
  transition:
    opacity 900ms ease,
    visibility 0s linear 900ms,
    transform 1600ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
  pointer-events: auto;
  transition:
    opacity 900ms ease,
    visibility 0s linear 0s,
    transform 5200ms ease;
}

.hero::before {
  display: none;
}

.hero-slide__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 54px;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 108px;
  padding-bottom: 112px;
}

.hero-copy {
  max-width: 760px;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #e0f2fe;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__title {
  max-width: 820px;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 1.12;
}

.hero__text {
  max-width: 680px;
  color: #e2e8f0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #f8fafc;
  font-size: .82rem;
  font-weight: 700;
}

.hero-app {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, .48), rgba(15, 23, 42, .28)),
    rgba(255, 255, 255, .08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
}

.hero-app__top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #e2e8f0;
  font-size: .9rem;
  font-weight: 700;
}

.hero-app__status {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #40c351;
  box-shadow: 0 0 0 6px rgba(64, 195, 81, .16);
}

.hero-app__body {
  display: grid;
  gap: 8px;
  padding: 22px 2px;
}

.hero-app__label {
  margin: 0;
  color: #38bdf8;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-app__body strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-app__body span {
  color: #cbd5e1;
  font-size: .95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button--glass {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.button--glass:hover {
  background: rgba(255, 255, 255, .18);
}

.hero-slider__controls {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.hero-slider__arrow,
.hero-slider__dot {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
}

.hero-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
}

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-slider__dot {
  width: 34px;
  height: 6px;
  padding: 0;
  border-radius: 10px;
}

.hero-slider__dot.is-active {
  background: #38bdf8;
  border-color: #38bdf8;
}

@media (min-width: 981px) {
  .header.header--over-hero {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header.header--over-hero .nav__link {
    color: #fff;
    text-shadow: 0 1px 18px rgba(0, 0, 0, .34);
  }

  .header.header--over-hero .nav__link:hover {
    color: #bfdbfe;
  }

  .header.header--over-hero .header__phone {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  }

  .header.header--over-hero .logo {
    color: #fff;
  }

  .header.header--over-hero .logo__image {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .28));
  }

  .header.header--over-hero .logo__image:not(.logo__image--light) {
    display: none;
  }

  .header.header--over-hero .logo__image--light {
    display: block;
  }

  .messengers {
    top: 50%;
    right: 18px;
    bottom: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(14px, -50%);
    transition: opacity .25s ease, transform .25s ease;
  }

  .messengers.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%);
  }

  .header__inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav {
    display: flex;
    flex-direction: column;
  }

  .nav__list {
    justify-content: center;
    gap: 18px;
  }

  .nav__link {
    font-size: .9rem;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 76px;
  }

  .messengers {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .messengers.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .header {
    z-index: 100;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
  }

  .logo {
    flex-basis: auto;
    width: 150px;
    min-height: 50px;
  }

  .logo__image {
    width: 150px;
    min-width: 150px;
    max-height: 50px;
  }

  .header__phone {
    padding: 10px 12px;
    font-size: .9rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 10px;
    bottom: 0;
    left: 10px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    max-height: none;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    background:
      radial-gradient(circle at top left, rgba(41, 182, 246, .12), transparent 32%),
      linear-gradient(180deg, #f8fafc, #f1f5f9);
    box-shadow: 0 28px 90px rgba(15, 23, 42, .24);
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 6px;
  }

  .nav__list li {
    display: flex;
    min-width: 0;
  }

  .nav__link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 10px;
    background: rgba(255, 255, 255, .88);
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
    font-size: .88rem;
    font-weight: 500;
  }

  .nav__link:hover {
    background: #eef6ff;
  }

  .nav__list li:first-child .nav__link,
  .nav__list li:last-child .nav__link {
    background: linear-gradient(135deg, #2563eb, #0b63f6);
    color: #fff;
    border-color: rgba(37, 99, 235, .4);
    font-weight: 600;
  }

  .nav__quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, .32);
  }

  .nav__quick .contact-action {
    min-width: 0;
    min-height: 46px;
    flex-direction: column;
    gap: 3px;
    padding: 7px 4px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .1);
    font-size: .66rem;
    font-weight: 500;
    line-height: 1.1;
  }

  .nav__quick .contact-action img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .nav__quick .contact-action__phone-mark {
    width: 30px;
    height: 22px;
  }

  .nav__reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 5px;
  }

  .nav__review-link {
    display: inline-flex;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 7px 8px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
    color: #2563eb;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .nav__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 5px;
  }

  .nav__info-item {
    display: grid;
    gap: 2px;
    min-width: 0;
    min-height: 40px;
    padding: 7px 9px;
    border: 1px solid rgba(37, 99, 235, .16);
    border-radius: 10px;
    background: rgba(255, 255, 255, .78);
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
  }

  .nav__info-item span {
    color: #2563eb;
    font-size: .62rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav__info-item strong {
    overflow: hidden;
    color: #0f172a;
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-slider {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-slide {
    background-image:
      linear-gradient(180deg, rgba(3, 7, 18, .42), rgba(3, 7, 18, .9)),
      var(--hero-image);
  }

  .hero-slide__inner {
    min-height: 100vh;
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 24px;
    padding-top: 92px;
    padding-bottom: 104px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-offset: 68px;
  }

  .header {
    padding: 8px 0;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 48px;
  }

  .header__phone {
    display: none;
  }

  .logo {
    font-size: 1rem;
    width: 142px;
    min-height: 44px;
  }

  .logo__image {
    width: 142px;
    min-width: 142px;
    max-height: 44px;
  }

  .nav {
    top: 64px;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }

  .nav__list {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .nav__link {
    min-height: 42px;
    font-size: .86rem;
  }

  .nav__quick {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav__quick .contact-action span:last-child {
    font-size: .6rem;
  }

  .nav__review-link {
    min-height: 34px;
    padding: 6px 7px;
    font-size: .66rem;
  }

  .nav__info {
    grid-template-columns: 1fr;
  }

  .nav__info-item {
    min-height: 38px;
    padding: 6px 8px;
  }

  .hero__title {
    font-size: clamp(1.65rem, 8.4vw, 2.45rem);
    line-height: 1.06;
  }

  .hero__text {
    margin-top: 18px;
    font-size: .95rem;
  }

  .hero-proof {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .hero-proof span {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: .76rem;
  }

  .hero-app {
    padding: 12px;
    background:
      linear-gradient(145deg, rgba(15, 23, 42, .68), rgba(15, 23, 42, .46)),
      rgba(255, 255, 255, .08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    backdrop-filter: blur(22px) saturate(145%);
  }

  .hero-app__top {
    min-height: 32px;
    padding-bottom: 10px;
    font-size: .82rem;
  }

  .hero-app__body {
    padding: 14px 2px;
  }

  .hero-app__body strong {
    font-size: 1.12rem;
  }

  .hero-app__body span {
    font-size: .84rem;
  }

  .contact-actions--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .contact-actions--hero .contact-action {
    min-width: 0;
    min-height: 46px;
    padding: 10px 8px;
    font-size: .78rem;
  }

  .hero-slider__controls {
    bottom: 18px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .messengers {
    right: 8px;
    bottom: 8px;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 16px);
  }

  .messengers__link,
  .messengers .contact-action {
    min-width: 0;
    padding: 11px 8px;
    font-size: .82rem;
  }

  .messengers .contact-action img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (max-width: 680px) {
  .dsg-quiz {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dsg-quiz__panel,
  .dsg-quiz__result {
    padding: 18px;
  }

  .dsg-quiz__options {
    grid-template-columns: 1fr;
  }

  .dsg-quiz__actions {
    gap: 6px;
  }

  .dsg-quiz__next {
    flex: 1 1 0;
    min-width: 0;
  }

  .dsg-quiz__result {
    grid-column: auto;
  }

  .dsg-quiz__actions .button {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 44px;
    padding: 10px 8px;
    font-size: .82rem;
  }

  .dsg-quiz__actions .button:not(.dsg-quiz__next) {
    flex-basis: 88px;
  }

  .dsg-quiz-contact-cta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .dsg-quiz-contact-cta .contact-action {
    min-width: 0;
    min-height: 48px;
    flex-direction: column;
    gap: 4px;
    padding: 8px 4px;
    font-size: .66rem;
    line-height: 1.1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .1);
  }

  .dsg-quiz-contact-cta .contact-action img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .reviews__head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
  }

  .reviews__controls {
    gap: 6px;
    margin-left: auto;
  }

  .reviews__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .reviews__track {
    gap: 12px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 16px;
  }

  .reviews__track > .review-card {
    flex-basis: min(82vw, 340px);
    min-height: 210px;
  }

  .reviews__dots {
    margin-top: 12px;
  }

  .review-popup {
    padding: 10px;
    place-items: center;
  }

  .review-popup__dialog {
    max-height: calc(100vh - 20px);
    max-height: calc(100svh - 20px);
    padding: 22px 18px 18px;
  }

  .review-popup__author {
    font-size: 1.08rem;
  }

  .review-popup__text {
    font-size: .92rem;
    line-height: 1.5;
  }

  .prices__head {
    display: grid;
    gap: 14px;
    padding: 18px;
  }

  .prices__button {
    display: none;
  }

  .prices__list {
    gap: 8px;
    padding: 10px 10px 14px;
  }

  .prices__row {
    display: block;
  }

  .prices__toggle {
    grid-template-areas:
      "title title title"
      "tag value icon";
    grid-template-columns: auto minmax(0, 1fr) 32px;
    gap: 10px 9px;
    align-items: center;
    padding: 13px 14px;
  }

  .prices__main {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .prices__summary {
    display: contents;
  }

  .prices__title {
    grid-area: title;
    font-size: .92rem;
  }

  .prices__tag {
    grid-area: tag;
    width: fit-content;
    min-height: 20px;
    padding: 3px 7px;
    font-size: .62rem;
  }

  .prices__value {
    grid-area: value;
    justify-self: start;
    font-size: .98rem;
  }

  .prices__icon {
    grid-area: icon;
    align-self: center;
    justify-self: end;
    width: 32px;
    height: 32px;
  }

  .prices__details {
    padding: 0 14px 14px;
  }

  .prices__write {
    width: 100%;
    min-height: 44px;
  }

  .prices__note {
    padding: 13px 18px;
  }

  .gallery-lightbox {
    padding: 8px;
    align-items: stretch;
  }

  .gallery-lightbox__dialog {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-content: center;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    max-height: calc(100svh - 16px);
  }

  .gallery-lightbox__figure {
    grid-column: 1 / -1;
    order: 1;
  }

  .gallery-lightbox__image {
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
    max-height: calc(100svh - 140px);
  }

  .gallery-lightbox__arrow {
    order: 2;
    width: 100%;
    height: 42px;
    font-size: 2rem;
  }

  .gallery-lightbox__close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .gallery-lightbox__close:hover {
    transform: translateY(-2px);
  }

  .work-gallery__head {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .work-gallery__controls {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
  }

  .work-gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .work-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 16px 8px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .work-gallery::-webkit-scrollbar {
    display: none;
  }

  .work-gallery__item {
    flex: 0 0 min(84vw, 360px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .work-gallery__image {
    min-height: 300px;
    aspect-ratio: 4 / 5;
  }

  .work-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .work-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .22);
    cursor: pointer;
  }

  .work-gallery__dot.is-active {
    width: 22px;
    background: #2563eb;
  }

  .section:not(#about):not(#contact) .grid,
  .logos-grid,
  .cert-grid,
  .logos-grid--clients {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-right: calc((100vw - 100%) / -2);
    margin-left: 0;
    padding: 0 16px 8px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .section:not(#about):not(#contact) .grid::-webkit-scrollbar,
  .logos-grid::-webkit-scrollbar,
  .cert-grid::-webkit-scrollbar,
  .logos-grid--clients::-webkit-scrollbar {
    display: none;
  }

  .section:not(#about):not(#contact) .grid > *,
  .logos-grid > *,
  .cert-grid > *,
  .logos-grid--clients > * {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .logos-grid > *,
  .cert-grid > *,
  .logos-grid--clients > * {
    min-height: 112px;
  }

  .section:not(#about):not(#contact) .grid > .card {
    min-height: 100%;
  }

  .section {
    padding: 40px 0;
  }
}

/* Performance: defer paint for below-the-fold sections */
main > .section:not(.hero),
main > .map-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.map-section {
  min-height: 420px;
  background: #e8eef5;
}

.map-section__placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  color: #64748b;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cards-carousel-section {
  overflow: hidden;
}

.cards-carousel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.cards-carousel__head .section__title {
  margin-bottom: 0;
}

.cards-carousel__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cards-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #2563eb;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.cards-carousel__arrow:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-1px);
}

.section--dark .cards-carousel__arrow {
  border-color: rgba(148, 163, 184, .28);
  background: rgba(15, 23, 42, .55);
  color: #e2e8f0;
  box-shadow: 0 12px 28px rgba(2, 6, 23, .28);
}

.section--dark .cards-carousel__arrow:hover {
  background: #29b6f6;
  color: #0b1120;
}

.cards-carousel__viewport {
  overflow: hidden;
}

.cards-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cards-carousel__track::-webkit-scrollbar {
  display: none;
}

.cards-carousel__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
}

.cards-carousel__card .card__text {
  flex: 1 1 auto;
}

.cards-carousel__card .service-price {
  margin-top: auto;
  padding-top: 16px;
}

.cards-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.cards-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.cards-carousel__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: #2563eb;
}

.section--dark .cards-carousel__dot {
  background: rgba(148, 163, 184, .35);
}

.section--dark .cards-carousel__dot.is-active {
  background: #29b6f6;
}

.cards-carousel-section--single .cards-carousel__controls,
.cards-carousel-section--single .cards-carousel__dots {
  display: none;
}

@media (max-width: 980px) {
  .cards-carousel__card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 680px) {
  .cards-carousel__head {
    align-items: center;
  }

  .cards-carousel__card {
    flex-basis: min(82vw, 340px);
  }
}

/* Cookie banner — glass rim around panel */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
  visibility: hidden;
}

.cookie-banner.is-visible {
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner__scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.42);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: auto;
}

.cookie-banner.is-visible .cookie-banner__scrim {
  opacity: 1;
}

.cookie-banner__shell {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 48px rgba(2, 6, 23, 0.32);
  transform: translateX(-50%) translateY(24px);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  pointer-events: auto;
}

.cookie-banner.is-visible .cookie-banner__shell {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner__panel {
  background: #0f172a;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
}

.cookie-banner__content {
  color: #fff;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__link {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  color: #38bdf8;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
}

.cookie-banner__btn--primary {
  border: 0;
  background: #2563eb;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.cookie-banner__btn--primary:hover {
  filter: brightness(1.06);
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

body.cookie-banner-open {
  overflow: hidden;
}

.footer__legal-link--btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.footer__legal-link--btn:hover {
  color: #2563eb;
}

@media (min-width: 768px) {
  .cookie-banner__shell {
    bottom: 24px;
    padding: 12px;
  }

  .cookie-banner__panel {
    padding: 22px 28px;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .cookie-banner__actions {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  .cookie-banner__shell {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    width: auto;
    transform: translateX(0) translateY(24px);
    padding: 8px;
    border-radius: 16px;
  }

  .cookie-banner.is-visible .cookie-banner__shell {
    transform: translateX(0) translateY(0);
  }

  .cookie-banner__panel {
    padding: 14px;
  }

  .cookie-banner__title {
    font-size: .95rem;
  }

  .cookie-banner__text {
    font-size: .78rem;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    min-height: 40px;
    padding: 8px 12px;
  }
}

@media print {
  .cookie-banner {
    display: none !important;
  }
}
