:root {
  --bg: #08111d;
  --text: #eef4ff;
  --muted: #9db0d3;
  --accent: #f36a1b;
  --accent-2: #ffb026;
  --accent-red: #ff553f;
  --line: rgba(255,255,255,0.085);
  --line-2: rgba(255,255,255,0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 0%, rgba(47,99,255,0.18), transparent 25%),
    radial-gradient(circle at 100% 8%, rgba(243,106,27,0.13), transparent 22%),
    linear-gradient(180deg, #08111d 0%, #081426 20%, #09192f 55%, #07101b 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .35;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(180deg, rgba(236,241,248,0.96), rgba(226,232,242,0.94));
  border-bottom: 1px solid rgba(12,22,40,0.10);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-red));
}

.site-header__wrap {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0 8px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-badge {
  position: relative;
  padding: 10px 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(228,234,243,0.96));
  border: 1px solid rgba(14,25,42,0.10);
  box-shadow:
    inset 0 2px 10px rgba(255,255,255,0.9),
    inset 0 -10px 22px rgba(8,17,29,0.05),
    0 14px 32px rgba(8,17,29,0.11);
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214,221,232,0.28), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,0.55),
    inset 0 -3px 10px rgba(0,0,0,0.05);
  pointer-events: none;
}

.brand__logo {
  position: relative;
  width: min(470px, 39vw);
  min-width: 245px;
  height: auto;
  filter:
    drop-shadow(0 6px 8px rgba(255,255,255,0.14))
    drop-shadow(0 8px 16px rgba(243,106,27,0.06))
    drop-shadow(0 6px 12px rgba(17,42,82,0.08));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #22324f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  transition: .18s ease;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: .18s ease;
  opacity: .9;
}

.nav a:hover {
  color: #ffb026;
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 38px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.38fr .82fr;
  gap: 22px;
  align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 21, 41, 0.90), rgba(8, 18, 36, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__main {
  padding: 46px 46px 36px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,176,38,0.08);
  border: 1px solid rgba(255,176,38,0.24);
  color: #ffd26e;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #f4f7ff;
}

.hero__lead {
  margin: 28px 0 0;
  max-width: 780px;
  font-size: 19px;
  line-height: 1.65;
  color: #d7e3fb;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__actions .btn {
  min-width: 300px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 17px;
  font-size: 17px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .18s ease;
}

.btn--primary {
  color: #101827;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 48px rgba(243,106,27,0.24);
}

.btn--ghost {
  color: #eef4ff;
  background: linear-gradient(180deg, rgba(20,31,54,0.88), rgba(13,22,40,0.88));
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255,176,38,0.22);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.fact {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.fact strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.hero__side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 620px;
}

.side-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.side-card__label {
  color: #c8b07a;
  font-size: 14px;
  margin-bottom: 10px;
}

.side-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.side-card p {
  margin: 12px 0 0;
  color: #d7e3fd;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__main,
  .hero__side {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav {
    display: none;
  }

  .brand__logo {
    width: min(430px, 78vw);
    min-width: 220px;
  }

  h1 {
    font-size: 44px;
    max-width: none;
  }

  .hero__lead {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }
}

.contact-box .value a {
  transition: .18s ease;
}

.contact-box .value a:hover {
  color: #ffd26e;
  text-shadow: 0 0 14px rgba(243,106,27,0.18);
  transform: translateX(1px);
}

.section {
  padding: 34px 0 0;
}

#services .container,
#advantages .container,
#process .container {
  position: relative;
}

#advantages {
  padding-top: 42px;
}

#process {
  padding-top: 52px;
  padding-bottom: 22px;
}

.section__head {
  margin-bottom: 22px;
}

.section__title {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #f3f6ff;
}

.section__desc {
  margin: 14px 0 0;
  max-width: 860px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

.services-grid,
.steps,
.two-col {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.two-col {
  grid-template-columns: 1.08fr 0.92fr;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.info-card,
.about-card,
.step {
  padding: 28px;
}

.service-card {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(12, 24, 46, 0.96), rgba(8, 18, 36, 0.92));
}

.info-card,
.about-card {
  background:
    linear-gradient(180deg, rgba(14, 24, 42, 0.82), rgba(8, 18, 34, 0.78));
}

#advantages .info-card {
  border-color: rgba(47,99,255,0.14);
}

#advantages .about-card {
  border-color: rgba(243,106,27,0.16);
}

.service-card__num,
.step__num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,176,38,0.10);
  border: 1px solid rgba(255,176,38,0.22);
  color: #ffcf6e;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.service-card h3,
.info-card h3,
.about-card h3,
.step h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #f4f7ff;
}

.service-card p,
.info-card p,
.about-card p,
.step p {
  margin: 0;
  color: #d8e3fd;
  font-size: 16px;
}

.service-card,
.info-card,
.about-card,
.step {
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,176,38,0.18);
}

.info-card:hover,
.about-card:hover {
  transform: translateY(-2px);
}

.step:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.10);
}

.docs-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.docs-row {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: .2s ease;
}

.docs-row:hover {
  background: rgba(255,255,255,0.045);
  transform: translateY(-2px);
}

.docs-row strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
}

.docs-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22,196,127,0.12);
  border: 1px solid rgba(22,196,127,0.22);
  color: #abf5c6;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
}

#advantages::before,
#process::before {
  content: "";
  display: block;
  height: 1px;
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto 8px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

  gap: 16px;
}

#process .step {
  min-height: 205px;
  background:
    linear-gradient(180deg, rgba(10, 19, 34, 0.72), rgba(8, 15, 28, 0.62));
  border-color: rgba(255,255,255,0.06);
}

#process .step h3 {
  font-size: 24px;
}

#process .step p {
  color: #c7d5f2;
  font-size: 15px;
}

#process .step__num {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  margin-bottom: 14px;
}


.price-card {
  background:
    linear-gradient(180deg, rgba(16, 28, 48, 0.90), rgba(8, 18, 36, 0.88));
}

.price-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #d7e2fb;
}

.price-list li + li {
  margin-top: 10px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 44px;
}

.contact-card {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(12, 24, 46, 0.94), rgba(8, 18, 36, 0.90));
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.03;
  font-weight: 900;
}

.contact-card p {
  margin: 0;
  color: #d8e3fd;
  font-size: 16px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-box {
  padding: 20px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.028));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 28px rgba(0,0,0,0.12);
  transition: .18s ease;
}

.contact-box:hover {
  transform: translateY(-2px);
  border-color: rgba(255,176,38,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}

.contact-box strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffd68a;
  letter-spacing: 0.01em;
}

.contact-box .value,
.contact-box .value a {
  color: #eef4ff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.contact-box .value a {
  transition: .18s ease;
}

.contact-box .value a:hover {
  color: #ffd26e;
  text-shadow: 0 0 14px rgba(243,106,27,0.18);
  transform: translateX(1px);
}

.map-wrap--real {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  margin-top: 18px;
}

.map-wrap--real .dg-widget-link {
  display: none;
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 14px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

#docs {
  padding-top: 54px;
}

#docs::before {
  content: "";
  display: block;
  height: 1px;
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

.price-card h3 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f3f6ff;
}

.price-card {
  padding: 34px;
}

.price-card {
  padding: 30px;
}

.contact-box strong::after {
  content: ":";
}

.contact-box .value br + a,
.contact-box .value br + span {
  display: inline-block;
  margin-top: 4px;
}

.price-card .hero__actions {
  align-items: stretch;
  gap: 14px;
}

.price-card .btn {
  min-width: 100%;
}

#contacts .contacts-grid {
  align-items: stretch;
}

#contacts .contact-card {
  height: auto;
}

#contacts .map-wrap--real {
  max-width: 1260px;
  margin: 16px auto 0;
  border-radius: 18px;
  overflow: hidden;
}

.hero__facts .fact {
  min-height: 190px;
}

#contacts {
  padding-top: 60px;
}

#contacts .contact-card h3 {
  margin-bottom: 18px;
}

#contacts .contact-box {
  padding: 22px 22px 20px;
}

.service-detail {
  max-width: 860px;
  margin-bottom: 48px;
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-detail p {
  margin-bottom: 16px;
  color: #dbe6ff;
}

.service-detail ul {
  margin: 14px 0 20px;
  padding-left: 18px;
}

.service-cta {
  margin-top: 18px;
}

.service-page {
  padding: 38px 0 54px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--muted);
  transition: .18s ease;
}

.breadcrumbs a:hover {
  color: #ffd27b;
}

.service-hero {
  padding: 34px;
  margin-bottom: 22px;
}

.service-hero h1 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #f4f7ff;
}

.service-hero .lead {
  margin: 0;
  max-width: 900px;
  color: #d7e3fb;
  font-size: 18px;
  line-height: 1.7;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.service-section {
  padding: 28px;
  margin-bottom: 20px;
}

.service-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  color: #f3f6ff;
}

.service-section p {
  margin: 0 0 14px;
  color: #dbe6ff;
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  margin: 0;
  padding-left: 20px;
  color: #dbe6ff;
}

.service-list li + li {
  margin-top: 10px;
}

.service-note {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbe6ff;
  font-size: 15px;
  line-height: 1.65;
}

.service-side-card {
  padding: 24px;
  margin-bottom: 20px;
}

.service-side-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: #f3f6ff;
}

.service-side-card p {
  margin: 0 0 12px;
  color: #dbe6ff;
  font-size: 15px;
  line-height: 1.65;
}

.service-side-card ul {
  margin: 0;
  padding-left: 18px;
  color: #dbe6ff;
}

.service-side-card li + li {
  margin-top: 8px;
}

.service-cta {
  margin-top: 20px;
}

.service-cta .btn {
  min-width: 280px;
}

@media (max-width: 1180px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 1180px) {
  .services-grid,
  .steps,
  .two-col {
    grid-template-columns: 1fr;
  }
}

#process .steps {
