:root {
  --bg: #08141f;
  --bg-soft: #102235;
  --surface: rgba(12, 25, 39, 0.74);
  --surface-strong: rgba(17, 34, 51, 0.94);
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #b1bfd1;
  --accent: #ff7a18;
  --accent-soft: #ffc36b;
  --success: #75e3b5;
  --shadow: 0 20px 80px rgba(3, 10, 20, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#services,
#pricing,
#cases,
#about,
#audience,
#workflow,
#urgent,
#reviews,
#faq,
#location,
#requisites,
#contact,
#hero {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.24), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(117, 227, 181, 0.16), transparent 25%),
    linear-gradient(180deg, #0a1622 0%, #09111a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: color 0.2s ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #ffe2a8;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.topbar {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(7, 16, 26, 0.7);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  box-shadow: 0 12px 24px rgba(3, 10, 20, 0.24);
}

.brand span:last-child {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #111821;
  box-shadow: 0 12px 34px rgba(255, 122, 24, 0.28);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0 32px;
}

.hero-copy,
.hero-panel,
.section,
.trust-strip {
  animation: rise 0.7s ease both;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 10.6ch;
}

.nowrap {
  white-space: nowrap;
}

.hero-it {
  display: inline-block;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.signal-card,
.stat-card,
.service-card,
.benefit-card,
.contact-form,
.contact-links a {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-card {
  min-height: 0;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
}

.signal-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111821;
  background: var(--success);
}

.signal-card h2 {
  margin: 16px 0 10px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.stat-card.accent {
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(255, 195, 107, 0.08)),
    var(--surface);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 8px;
}

.trust-strip p {
  margin: 0;
  padding: 16px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  margin-top: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(9, 20, 31, 0.72);
  backdrop-filter: blur(16px);
}

.site-footer {
  padding: 26px 8px 8px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.pricing-section {
  overflow: hidden;
}

.location-section {
  overflow: hidden;
}

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

.cases-grid,
.audience-grid,
.steps-grid,
.urgent-grid,
.reviews-grid,
.requisites-grid,
.map-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.cases-grid,
.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.case-card,
.audience-card,
.step-card,
.urgent-card,
.review-card,
.map-card,
.requisite-card,
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.case-card,
.step-card,
.review-card,
.map-card,
.requisite-card {
  padding: 24px;
  border-radius: 26px;
}

.audience-card,
.urgent-card {
  padding: 20px 18px;
  border-radius: 22px;
  font-weight: 700;
  text-align: center;
}

.case-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.14);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card h3,
.step-card h3,
.review-card strong,
.map-card h3,
.requisite-card strong {
  margin: 0 0 12px;
}

.case-card p,
.step-card p,
.review-card p,
.map-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.case-card p:last-child,
.step-card p:last-child,
.review-card p:last-child,
.map-card p:last-child {
  margin-bottom: 0;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-family: "Unbounded", sans-serif;
  font-size: 1.3rem;
}

.review-card p {
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  border-radius: 24px;
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.map-card,
.requisite-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.map-card-wide {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  gap: 20px;
}

.map-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.map-card p,
.requisite-card span {
  color: var(--muted);
}

.metro-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.metro-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
  background: #f4cf2f;
  box-shadow: 0 0 0 4px rgba(244, 207, 47, 0.12);
}

.map-embed {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
  min-height: 300px;
}

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

.requisites-grid-full {
  grid-template-columns: 1fr;
}

.requisite-card strong {
  font-size: 1.08rem;
  line-height: 1.5;
}

.price-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.price-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.16), rgba(255, 255, 255, 0.04)),
    var(--surface-strong);
  transform: translateY(-6px);
}

.price-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(117, 227, 181, 0.14);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 18px 0 8px;
  font-size: 1.55rem;
}

.price-value {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
}

.price-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.price-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.service-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(117, 227, 181, 0.12), rgba(255, 255, 255, 0.03)),
    var(--surface);
}

.service-card h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.section-heading.compact {
  max-width: 500px;
}

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

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
}

.contact-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

.contact-links .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #111111;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.2);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-links span {
  color: var(--muted);
}

.contact-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-text span {
  margin: 0;
}

.contact-text strong {
  display: block;
}

.contact-qr-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  padding: 0;
}

.contact-qr {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(3, 10, 20, 0.14);
}

.contact-links strong {
  text-align: right;
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form span {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 195, 107, 0.66);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.button-submit {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-note.success {
  color: var(--success);
}

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

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cases-grid,
  .pricing-grid,
  .reviews-grid,
  .steps-grid,
  .audience-grid,
  .urgent-grid,
  .requisites-grid,
  .map-grid,
  .services-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-card-wide {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 8px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 28px;
  }

  .nav {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand {
    width: 100%;
    gap: 14px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    font-size: 0.92rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .button-small {
    order: 3;
    display: none;
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    line-height: 0.9;
  }

  .nowrap {
    white-space: normal;
  }

  .hero-it {
    display: inline;
    font-size: 1em;
    line-height: inherit;
    letter-spacing: inherit;
    overflow-wrap: normal;
  }

  .eyebrow {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .hero-text,
  .section-heading p,
  .contact-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .services-grid,
  .pricing-grid,
  .cases-grid,
  .audience-grid,
  .steps-grid,
  .urgent-grid,
  .reviews-grid,
  .requisites-grid,
  .map-grid,
  .benefits-grid,
  .stats-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .section {
    margin-top: 20px;
    padding: 22px 16px;
    border-radius: 26px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .trust-strip p,
  .hero-points li {
    font-size: 0.92rem;
  }

  .signal-card,
  .service-card,
  .price-card,
  .case-card,
  .step-card,
  .review-card,
  .map-card,
  .requisite-card,
  .contact-form,
  .contact-links a {
    border-radius: 22px;
  }

  .signal-card,
  .service-card,
  .price-card,
  .case-card,
  .step-card,
  .review-card,
  .map-card,
  .requisite-card {
    padding: 20px 18px;
  }

  .signal-card h2 {
    font-size: 1.55rem;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-card strong {
    font-size: 1.45rem;
  }

  .price-card-featured {
    transform: none;
  }

  .contact-links a {
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .contact-main {
    width: 100%;
  }

  .contact-links strong {
    text-align: left;
  }

  .contact-qr-wrap {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .map-card-wide {
    grid-template-columns: 1fr;
  }

  .map-card-copy .button {
    width: 100%;
  }

  .map-embed {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .topbar {
    padding: 13px;
  }

  .brand {
    gap: 12px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10.4vw, 2.82rem);
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .contact-links a {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-qr-wrap {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    align-self: flex-start;
  }
}
