*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1e293b;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
:root {
  --color-primary: #1e3a8a;
  --color-primary-hover: #1e3a9a;
  --color-primary-dark: #162d6e;
  --color-accent: #3b82f6;
  --color-accent-hover: #2563eb;
  --color-accent-light: #fff3e0;
  --color-bg: #fff;
  --color-bg-light: #f8fafc;
  --color-bg-blue: #eff6ff;
  --color-bg-blue-100: #dbeafe;
  --color-text: #1e293b;
  --color-text-secondary: #555;
  --color-text-muted: #888;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-dark-bg: #111827;
  --color-dark-surface: #1f2937;
  --color-dark-text: #9ca3af;
  --color-dark-link: #93c5fd;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.2s ease;
  --footer-bg: #111827;
  --footer-surface: #1f2937;
  --footer-muted: #9ca3af;
  --footer-dim: #6b7280;
  --footer-blue: #93c5fd;
}
.side-padding {
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .side-padding {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .side-padding {
    padding: 0 16px;
  }
}
.width-wide {
  max-width: 1400px;
  width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-bg-blue);
}
.btn-ghost {
  background: var(--color-bg-blue-100);
  color: var(--color-primary);
}
.btn-ghost:hover {
  background: #bfdbfe;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.breadcrumbs__item::after {
  content: '/';
  margin-left: 4px;
  color: var(--color-border);
}
.breadcrumbs__item:last-child::after {
  display: none;
}
.breadcrumbs__link {
  color: var(--color-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumbs__link:hover {
  color: var(--color-primary);
}
.breadcrumbs__current {
  color: var(--color-primary);
  font-weight: 500;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.header__logo-demo {
  height: 44px;
  width: 120px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.3px;
}
.header__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-muted);
  flex-shrink: 0;
}
.header__meta img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.icon-demo {
  width: 16px;
  height: 16px;
  background: var(--color-muted);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.header__phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__phone-row img,
.header__phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.phone-icon-demo {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.4;
  flex-shrink: 0;
}
.header__phone_main {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header__phone_main:hover {
  color: var(--color-accent);
}
.header__phone_secondary {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header__phone_secondary:hover {
  color: var(--color-primary);
}
.header__cta {
  background: var(--color-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.header__nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.header__nav-link:hover {
  color: var(--color-primary);
  background: var(--color-bg-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav__link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--color-bg-blue);
  transition: var(--transition);
}
.mobile-nav__link:hover {
  background: var(--color-bg-blue-100);
  color: var(--color-primary);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: var(--transition);
  margin-left: auto;
}
.header__burger:hover {
  background: var(--color-bg-blue);
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.24s ease;
  transform-origin: center;
}
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 49;
  overflow-y: auto;
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 24px;
}
.header__mobile-menu.is-open {
  display: flex;
}
.mobile-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--color-bg-blue);
  border-radius: var(--radius);
}
.mobile-phones__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-phones__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-icon-demo--white {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.8;
}
.mobile-phones__main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}
.mobile-phones__secondary {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
}
.mobile-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.icon-demo--sm {
  width: 18px;
  height: 18px;
  background: var(--color-muted);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  justify-content: center;
}
.mobile-divider {
  height: 1px;
  background: var(--color-border);
}
.header__cta:hover {
  background: var(--color-accent-hover);
}
@media (max-width: 1023px) {
  .header__actions {
    display: none;
  }
  .header__burger {
    display: flex;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
    gap: 12px;
  }
  .header__meta {
    display: none;
  }
  .header__phone {
    display: none;
  }
  .header__nav {
    display: none;
  }
}
.hero {
  padding-top: 128px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
  overflow: hidden;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
@media (min-width: 767px) {
  .hero__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1023px) {
  .hero__inner {
    padding: 0 32px;
  }
}
.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1023px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-bg-blue-100);
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.875rem;
}
.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-top: 16px;
}
@media (min-width: 1023px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-top: 16px;
}
.hero__slogan {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--color-bg-blue);
  border: 2px solid var(--color-bg-blue-100);
  border-radius: var(--radius);
  color: var(--color-primary);
}
.hero__slogan small {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.hero__slogan strong {
  font-size: 1.125rem;
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero__image-wrap {
  display: none;
  position: relative;
}
@media (min-width: 1023px) {
  .hero__image-wrap {
    display: block;
  }
}
.hero__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.5), transparent);
}
.hero__stat {
  position: absolute;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.hero__stat--bottom {
  bottom: -24px;
  left: -24px;
}
.hero__stat--top {
  top: -24px;
  right: -24px;
  background: var(--color-accent);
  color: #fff;
}
.hero__stat .stat__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
}
.hero__stat--top .stat__value {
  color: #fff;
}
.hero__stat .stat__label {
  font-size: 0.875rem;
  color: var(--color-muted);
}
.hero__stat--top .stat__label {
  color: rgba(255,255,255,0.85);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header img {
  display: inline-block;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
}
@media (min-width: 1023px) {
  .section-title {
    font-size: 2.25rem;
  }
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-top: 16px;
}
.advantages {
  padding: 80px 0;
  background: #fff;
}
.advantages__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 767px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1023px) {
  .advantages__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.advantage-card {
  padding: 32px 24px;
  background: var(--color-bg-blue-100);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 220px;
}
.advantage-card__icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}
.advantage-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.services {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff, #eff6ff);
}
.services__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1023px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.services__footer {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.services__all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--color-bg-blue-100);
  background: var(--color-bg-blue);
  transition: var(--transition);
}
.services__all-link svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.services__all-link:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-blue-100);
}
.services__all-link:hover svg {
  transform: translateX(4px);
}
.services-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.services-card:hover {
  box-shadow: var(--shadow-xl);
}
.services-card__image {
  height: 256px;
  overflow: hidden;
  flex-shrink: 0;
}
.services-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.services-card:hover .services-card__image img {
  transform: scale(1.05);
}
.services-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-bg-blue-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.services-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
.services-card__desc {
  color: var(--color-muted);
  flex: 1;
  line-height: 1.5;
}
.services-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
}
.services-card__price-label {
  font-size: 0.875rem;
  color: var(--color-muted);
}
.services-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}
.extra-services {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.extra-services__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.extra-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
.extra-services__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 767px) {
  .extra-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1023px) {
  .extra-services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.extra-services__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-bg-blue);
  border-radius: var(--radius);
}
.extra-services__dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.extra-services__label {
  font-size: 0.875rem;
  color: var(--color-text);
}
.services-nav {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
}
.services-nav__header {
  margin-bottom: 1.25rem;
}
.services-nav__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  margin: 0 0 0.3rem;
}
.services-nav__sub {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #555);
  margin: 0;
}
.services-nav__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  gap: 0.75rem;
}
.services-nav-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.services-nav-card:hover {
  border-color: var(--color-accent, #f57c00);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}
.services-nav-card--all {
  background: var(--color-accent-light, #fff3e0);
  border-color: var(--color-accent, #f57c00);
}
.services-nav-card--all:hover {
  background: #ffe0b2;
}
.services-nav-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.services-nav-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.services-nav-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text, #2c2c2c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-nav-card--all .services-nav-card__title {
  color: var(--color-accent, #f57c00);
}
.services-nav-card__price {
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
}
@media (max-width: 1023px) {
  services-nav__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .services-nav__grid {
    grid-template-columns: 1fr;
  }
}
.services-card__links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.calculator {
  padding: 80px 0;
  background: #fff;
}
.calculator__box {
  background: var(--color-bg-blue);
  border-radius: 20px;
  padding: 48px;
}
.calculator__form {
  display: grid;
  gap: 24px;
}
@media (min-width: 767px) {
  .calculator__form {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}
.form-control {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: norepeat;
  background-position: right 14px center;
}
.calculator__result {
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.calculator__result-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.calculator__result-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
}
.how-we-work {
  padding: 80px 0;
  background: var(--color-bg-blue);
}
.steps__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (min-width: 767px) {
  .steps__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1023px) {
  .steps__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.step-card {
  position: relative;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.step-card__number {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.step-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.service-area {
  padding: 80px 0;
  background: #fff;
}
.service-area__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1023px) {
  .service-area__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.service-area__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.service-area__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  background: var(--color-bg-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  color: var(--color-text);
}
.service-area__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-area__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-area__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}
.service-area__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}
.service-area__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.service-area__map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.faq {
  padding: 80px 0;
  background: var(--color-bg-blue);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item__question:hover {
  background: var(--color-bg-blue);
}
.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  display: none;
  padding: 0 24px 24px;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.faq-item.is-open .faq-item__answer {
  display: block;
}
.faq__cta {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.faq__cta-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
}
.faq__cta-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}
.faq__cta-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.faq__cta-text a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.faq__cta-text a:hover {
  color: var(--color-accent);
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 1.625rem;
  }
  .faq-item__question {
    font-size: 1rem;
    padding: 18px 16px;
  }
  .faq-item__answer {
    padding: 0 16px 18px;
  }
}
.contact-form {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e3a6a 60%, #1a3070 100%);
  overflow: hidden;
}
.contact-form__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.contact-form__blob--tl {
  width: 420px;
  height: 420px;
  background: #60a5fa;
  top: -80px;
  left: -80px;
}
.contact-form__blob--br {
  width: 380px;
  height: 380px;
  background: #3b82f6;
  bottom: -60px;
  right: -60px;
}
.contact-form__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 767px) {
  .contact-form__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1023px) {
  .contact-form__inner {
    padding: 0 32px;
  }
}
.contact-form__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1023px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info {
  color: #fff;
}
.contact-info__badge {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255,255,255,0.18);
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.contact-info__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
@media (min-width: 1023px) {
  .contact-info__title {
    font-size: 2.25rem;
  }
}
.contact-info__subtitle {
  font-size: 1.0625rem;
  color: #bfdbfe;
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info__icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.contact-info__icon-wrap img {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info__item-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #bfdbfe;
  margin-bottom: 4px;
}
.contact-info__item-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}
.contact-info__item-value:hover {
  color: #bfdbfe;
}
.contact-info__item-text {
  font-size: 1.0625rem;
  color: #bfdbfe;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 7670px) {
  .contact-card {
    padding: 28px 20px;
  }
}
.contact-card__header {
  text-align: center;
  margin-bottom: 28px;
}
.contact-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.contact-card__subtitle {
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.form-field {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form-label span {
  color: var(--color-accent);
  margin-left: 2px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2364748b' d='M7 9.5L1.5 4h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
textarea.form-control {
  resize: none;
  height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-row--single {
  grid-template-columns: 1fr;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.form-submit svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-submit:hover {
  background: var(--color-primary-dark);
}
.form-submit:active {
  transform: scale(0.98);
}
.form-policy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.form-field--checkbox {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-label--checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.form-label--checkbox span a {
  color: var(--color-accent);
}
.form-label--checkbox span a:hover {
  text-decoration: none;
}
.checkbox-control {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-card__success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.contact-card__success.is-visible {
  display: block;
  animation: fadeUp 0.35s ease;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon img {
  width: 30px;
  height: 30px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.success-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.form-error {
  font-weight: 500;
  color: #f00;
}
.smart-captcha {
  height: 100px;
}
.form-overlay-wrap {
  position: relative;
}
.form-overlay-wrap__content--blocked {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}
.form-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
}
.form-overlay__icon {
  font-size: 2.5rem;
  line-height: 1;
}
.form-overlay__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}
.form-overlay__text {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 260px;
}
.seo-text {
  padding: 40px 0;
  background: #fff;
}
.seo-text h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.seo-text p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 860px;
}
.footer {
  background: var(--footer-bg);
  color: #fff;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 767px) {
  .footer__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1023px) {
  .footer__inner {
    padding: 0 32px;
  }
}
.footer__body {
  padding: 56px 0 40px;
}
.footer__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1023px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo {
  width: 42px;
  height: auto;
}
.footer__brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.footer__brand-city {
  font-size: 0.8125rem;
  color: var(--footer-muted);
  margin-top: 2px;
}
.footer__desc {
  font-size: 0.875rem;
  color: var(--footer-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer__slogan {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--footer-blue);
}
.footer__col-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link:hover {
  color: #fff;
}
.footer__link img {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.7;
}
.footer__req-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer__req-item {
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__req-label {
  color: var(--footer-dim);
  display: block;
  margin-bottom: 1px;
}
.footer__req-value {
  color: var(--footer-muted);
}
.footer__bottom {
  border-top: 1px solid var(--footer-surface);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
@media (min-width: 767px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--footer-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__legal-link {
  font-size: 0.8125rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer__legal-link:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .footer__grid > * + * {
    padding-top: 32px;
    border-top: 1px solid var(--footer-surface);
  }
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 32px;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: #64748b;
}
.text-primary {
  color: #1e3a8a;
}
.hidden {
  display: none;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 720px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.cookie-banner--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    max-width: none;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    transform: translateY(12px);
  }
  .cookie-banner.cookie-banner--visible {
    transform: translateY(0);
  }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
.cookie-banner__text {
  flex: 1;
  min-width: 0;
}
.cookie-banner__text p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.cookie-banner__text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}
.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.cookie-banner__text a:hover {
  color: var(--color-primary);
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cookie-banner__actions {
    flex-direction: row;
    justify-content: stretch;
  }
  .cookie-banner__actions .cookie-banner__button {
    flex: 1;
  }
}
.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: var(--transition);
}
.cookie-banner__button--primary {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner__button--primary:hover {
  background: var(--color-primary-hover);
}
.cookie-banner__button--primary:active {
  transform: scale(0.97);
}
.cookie-banner__button--secondary {
  background: var(--color-bg-blue);
  color: var(--color-primary);
}
.cookie-banner__button--secondary:hover {
  background: var(--color-bg-blue-100);
}
.cookie-banner__button--secondary:active {
  transform: scale(0.97);
}
.privacy-policy,
.services-page {
  padding: 80px 0 80px;
}
@media (max-width: 767px) {
  .privacy-policy,
  .services-page {
    padding: 80px 0 60px;
  }
}
.page {
  max-width: 860px;
  margin: 0 auto;
}
.page-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  text-align: center;
  border-bottom: 2px solid var(--color-bg-blue-100);
}
.page-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 1rem;
  }
}
.page-header__meta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted);
  text-align: right;
  margin-top: 12px;
}
.page-chapter {
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-chapter h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-accent);
}
.page-chapter h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 24px;
}
.page-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-text p,
.page-text ul {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
  text-align: justify;
  text-indent: 2em;
}
.page-text a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.page-text a:hover {
  text-decoration: underline;
}
.page-text ul,
.page-text ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-text ul {
  list-style: square;
}
.page-text ol {
  list-style: decimal;
}
.page-text li {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
}
.page-text strong {
  color: var(--color-text);
  font-weight: 600;
}
.page-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 8px;
}
.page-text th {
  background: var(--color-bg-blue);
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--color-bg-blue-100);
}
.page-text td {
  padding: 10px 14px;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.6;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
.contacts-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts-card {
  background: var(--color-bg-blue, #eff6ff);
  border: 1px solid var(--color-bg-blue-100, #dbeafe);
  border-radius: 12px;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .contacts-card {
    padding: 1.25rem;
  }
}
.contacts-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary, #1e3a8a);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-blue-100, #dbeafe);
}
.contacts-card--hours {
  background: var(--color-primary, #1e3a8a);
  border-color: transparent;
}
.contacts-card--hours .contacts-card__title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.2);
}
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contacts-item__icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary, #1e3a8a);
  border-radius: var(--radius, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contacts-item__icon img {
  filter: brightness(0) invert(1);
  width: 18px;
  height: 18px;
}
.contacts-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.contacts-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contacts-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted, #64748b);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contacts-item__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary, #1e3a8a);
  transition: color 0.2s;
}
.contacts-item__value:hover {
  color: var(--color-accent, #3b82f6);
}
.contacts-item__note {
  font-size: 0.8125rem;
  color: var(--color-muted, #64748b);
}
.contacts-messengers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contacts-messenger {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius, 8px);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.contacts-messenger:hover {
  border-color: var(--color-accent, #3b82f6);
  box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,0.1));
  transform: translateY(-1px);
}
.contacts-messenger__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contacts-messenger__icon--tg {
  background: #2ca5e0;
}
.contacts-messenger__icon--max {
  background: #e6082a;
}
.contacts-messenger__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contacts-messenger__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary, #1e3a8a);
}
.contacts-messenger__hint {
  font-size: 0.8125rem;
  color: var(--color-muted, #64748b);
}
.contacts-requisites {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
}
.contacts-requisites__key {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted, #64748b);
  white-space: nowrap;
}
.contacts-requisites__val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text, #1e293b);
  line-height: 1.5;
}
.contacts-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contacts-hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contacts-hours__day {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.contacts-hours__time {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.contacts-hours__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.contacts-map-wrap {
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border, #e2e8f0);
  box-shadow: var(--shadow-sm);
}
.contacts-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-bg-blue, #eff6ff);
  border-bottom: 1px solid var(--color-bg-blue-100, #dbeafe);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contacts-map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.contacts-map-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted, #64748b);
  line-height: 1.45;
}
.contacts-map-address svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent, #3b82f6);
}
.contacts-map-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary, #1e3a8a);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.contacts-map-route:hover {
  color: var(--color-accent, #3b82f6);
}
.contacts-map-route svg {
  flex-shrink: 0;
}
.contacts-map-frame {
  line-height: 0;
}
.contacts-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
@media (max-width: 767px) {
  .contacts-map-frame iframe {
    height: 280px;
  }
}
.contacts-form-wrap {
  background: var(--color-bg-blue, #eff6ff);
  border: 1px solid var(--color-bg-blue-100, #dbeafe);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .contacts-form-wrap {
    padding: 1.25rem;
  }
}
.contacts-form-lead {
  font-size: 0.9375rem;
  color: var(--color-muted, #64748b);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contacts-form-wrap .contact-card__header {
  display: none;
}
.contacts-form-wrap #contact-form-el {
  background: transparent;
}
.services-page {
  padding-top: 96px;
  padding-bottom: 80px;
  background: #fff;
}
@media (max-width: 767px) {
  .services-page {
    padding-top: 88px;
    padding-bottom: 60px;
  }
}
.service-hero {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
@media (min-width: 1023px) {
  .service-hero {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .service-hero {
    gap: 32px;
  }
}
.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--color-bg-blue-100);
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  width: fit-content;
}
.service-hero__badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.service-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}
@media (min-width: 1023px) {
  .service-hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .service-hero__title {
    font-size: 1.625rem;
  }
}
.service-hero__desc {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.service-hero__price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg-blue);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}
.service-hero__price-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.service-hero__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.service-hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
@media (max-width: 767px) {
  .service-hero__image img {
    height: 260px;
  }
}
.service-hero__image:hover img {
  transform: scale(1.03);
}
.service-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.3), transparent);
  pointer-events: none;
}
.service-includes {
  padding: 48px 0;
  background: var(--color-bg-blue);
  border-radius: 20px;
  margin-bottom: 48px;
}
.service-includes__inner {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .service-includes__inner {
    padding: 0 20px;
  }
}
.service-includes__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
  text-align: center;
}
.service-includes__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.service-include-item__icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-include-item__icon img {
  width: 18px;
  height: 18px;
}
.service-include-item__text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 500;
}
.service-content {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 767px) {
  .service-content {
    grid-template-columns: 2fr 1fr;
  }
}
.service-content__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-content__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-bg-blue-100);
  margin-bottom: 8px;
}
.service-content__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
}
.service-content__text p {
  margin-bottom: 12px;
}
.service-content__text p:last-child {
  margin-bottom: 0;
}
.service-content__text ul,
.service-content__text ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.service-content__text ul {
  list-style: disc;
}
.service-content__text ol {
  list-style: decimal;
}
.service-content__text li {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.service-content__text strong {
  color: var(--color-text);
  font-weight: 600;
}
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .service-sidebar {
    display: none;
  }
}
.service-sidebar__card {
  background: var(--color-bg-blue);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--color-bg-blue-100);
}
.service-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.service-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.service-sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.service-sidebar__dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-sidebar__cta {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-sidebar__cta-title {
  font-size: 1rem;
  font-weight: 700;
}
.service-sidebar__cta-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.service-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 32px;
  background: var(--color-bg-blue);
  border-radius: 16px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .service-specs {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
}
.service-spec {
  text-align: center;
  padding: 16px;
}
.service-spec__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.service-spec__label {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.service-cta {
  padding: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a6a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .service-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}
.service-cta__text {
  color: #fff;
}
.service-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .service-cta__title {
    font-size: 1.25rem;
  }
}
.service-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .service-cta__actions {
    justify-content: center;
  }
}
.related-services {
  margin-bottom: 48px;
}
.related-services__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.related-services__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 767px) {
  .related-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1023px) {
  .related-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-blue);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.related-card:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-blue-100);
}
.related-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-card__icon img {
  width: 22px;
  height: 22px;
}
.related-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.related-card__price {
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.services-intro {
  margin-bottom: 2.5rem;
}
.services-intro__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text, #2c2c2c);
  margin-bottom: 1.25rem;
}
.services-intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text, #2c2c2c);
  white-space: nowrap;
}
.services-badge__icon {
  font-size: 1rem;
  line-height: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--color-accent, #f57c00);
  transform: translateY(-2px);
}
.service-card__icon-wrap {
  padding: 1.25rem 1.5rem 0;
}
.service-card__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.6rem;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text, #2c2c2c);
  line-height: 1.3;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary, #555);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin-top: 0.25rem;
}
.service-card__price-label {
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
}
.service-card__price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent, #f57c00);
}
.service-card__price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted, #888);
}
.service-card__btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
}
.services-price-table-wrap {
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.services-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  min-width: 380px;
}
.services-price-table thead {
  background: var(--color-accent, #f57c00);
  color: #fff;
}
.services-price-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.services-price-table tbody tr {
  border-bottom: 1px solid var(--color-border, #e5e5e5);
  transition: background 0.15s;
}
.services-price-table tbody tr:last-child {
  border-bottom: none;
}
.services-price-table tbody tr:hover {
  background: var(--color-accent-light, #fff3e0);
}
.services-price-table tbody td {
  padding: 0.8rem 1rem;
  vertical-align: middle;
  color: var(--color-text, #2c2c2c);
}
.services-price-table .price-cell {
  font-weight: 700;
  color: var(--color-accent, #f57c00);
  white-space: nowrap;
}
.services-price-note {
  font-size: 0.88rem;
  color: var(--color-text-secondary, #555);
  margin-top: 0.75rem;
}
.services-geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.services-geo__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent, #f57c00);
  display: inline-block;
}
.services-geo__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
}
.services-geo__list li {
  font-size: 0.92rem;
  color: var(--color-text-secondary, #555);
  padding: 0.25rem 0;
  padding-left: 1.1em;
  position: relative;
}
.services-geo__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent, #f57c00);
  font-weight: bold;
}
.services-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.services-adv-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: #fafafa;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.services-adv-item:hover {
  border-color: var(--color-accent, #f57c00);
  background: var(--color-accent-light, #fff3e0);
}
.services-adv-item__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.services-adv-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.services-adv-item__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  display: block;
}
.services-adv-item__text {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #555);
  margin: 0;
  line-height: 1.55;
}
.services-faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.services-page .services-faq .faq-item {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 16px;
  box-shadow: var(--shadow-sm, 0 1px 4px rgba(0,0,0,0.06));
  overflow: hidden;
  transition: border-color 0.2s;
}
.services-page .services-faq .faq-item.is-open {
  border-color: var(--color-accent, #f57c00);
}
.services-page .services-faq .faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary, #1a3a5c);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition, 0.2s);
  user-select: none;
}
.services-page .services-faq .faq-item__question:hover {
  background: var(--color-bg-blue, #f0f6ff);
}
.services-page .services-faq .faq-item.is-open .faq-item__question {
  background: var(--color-accent-light, #fff3e0);
}
.services-page .services-faq .faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent, #f57c00);
  transition: transform 0.2s ease;
}
.services-page .services-faq .faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}
.services-page .services-faq .faq-item__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: #fff;
}
.services-page .services-faq .faq-item.is-open .faq-item__answer {
  display: block;
}
.services-page .services-faq .faq-item__answer p {
  font-size: 1rem;
  color: var(--color-muted, #666);
  line-height: 1.65;
  margin: 0;
}
.services-cta {
  margin-top: 3rem;
  border-radius: 16px;
  background: var(--color-accent, #f57c00);
  overflow: hidden;
}
.services-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.services-cta__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.services-cta__sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.55;
}
.services-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.services-cta .btn-accent {
  background: #fff;
  color: var(--color-accent, #f57c00);
  border-color: #fff;
  font-weight: 700;
}
.services-cta .btn-accent:hover {
  background: #fff3e0;
}
.services-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.services-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .services-geo {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-geo__list {
    grid-template-columns: 1fr 1fr;
  }
  .services-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .services-cta__title {
    font-size: 1.1rem;
  }
  .services-cta__actions {
    width: 100%;
  }
  .services-cta__actions .btn {
    flex: 1;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .services-intro__badges {
    gap: 0.4rem;
  }
  .services-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-geo__list {
    grid-template-columns: 1fr;
  }
  .services-advantages {
    grid-template-columns: 1fr;
  }
  .faq-item__question {
    font-size: 0.92rem;
  }
}
.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.service-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent, #f57c00), transparent);
}
.service-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 0;
  position: relative;
}
.service-step__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent, #f57c00);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff;
}
.service-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.6rem;
}
.service-step__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  display: block;
}
.service-step__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #555);
  margin: 0;
  line-height: 1.6;
}
.service-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.service-compare__col {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  background: #fafafa;
}
.service-compare__col--accent {
  background: var(--color-accent-light, #fff3e0);
  border-color: var(--color-accent, #f57c00);
}
.service-compare__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  margin: 0 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}
.service-compare__col--accent .service-compare__title {
  border-bottom-color: var(--color-accent, #f57c00);
  color: var(--color-accent, #f57c00);
}
.service-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-compare__list li {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #555);
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}
.service-compare__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent, #f57c00);
  font-weight: bold;
}
@media (max-width: 767px) {
  .service-compare {
    grid-template-columns: 1fr;
  }
  .service-steps::before {
    display: none;
  }
}
.services-category {
  margin-bottom: 3rem;
}
.services-category__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}
.services-category__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.services-category__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text, #2c2c2c);
  margin: 0 0 0.25rem;
}
.services-category__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #555);
  margin: 0;
  line-height: 1.5;
}
.services-grid--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .services-grid--two-col {
    grid-template-columns: 1fr;
  }
}
.services-grid--two-col .service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
}
.services-grid--two-col .service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--color-accent, #f57c00);
  transform: translateY(-2px);
}
.services-grid--two-col .service-card__icon-wrap {
  padding: 1.25rem 1.5rem 0;
}
.services-grid--two-col .service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem 1.5rem 1.5rem;
  gap: 0.5rem;
}
.services-grid--two-col .service-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text, #2c2c2c);
  line-height: 1.3;
}
.services-grid--two-col .service-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #555);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.services-grid--two-col .service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin-top: auto;
}
.services-grid--two-col .service-card__btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.services-category + .services-category {
  padding-top: 0.5rem;
}
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--color-bg-blue) 0%, #fff 60%);
}
.error-page__inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.error-page__code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-bg-blue-100);
  letter-spacing: -0.04em;
  position: relative;
  user-select: none;
}
.error-page__code::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--color-primary);
  opacity: 0.08;
}
.error-page .error-page__code {
  color: var(--color-bg-blue-100);
}
.error-page--500 .error-page__code {
  color: #fee2e2;
}
.error-page__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}
.error-page__text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.error-page__actions .btn {
  min-width: 140px;
}
.error-page__help {
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-bg-blue-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.error-page__help-title {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: 500;
}
.error-page__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.error-page__phone {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
.error-page__phone:hover {
  color: var(--color-accent);
}
.error-page__phone--secondary {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
}
.error-page__phone--secondary:hover {
  color: var(--color-primary);
}
.error-page__hours {
  font-size: 0.8125rem;
  color: var(--color-muted);
}
@media (max-width: 480px) {
  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-page__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .error-page__phones {
    flex-direction: column;
    align-items: center;
  }
}
@-moz-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
