:root {
  --vh-primary: #635bff;
  --vh-primary-dark: #4942dc;
  --vh-primary-soft: #eeecff;
  --vh-accent: #b9f36b;
  --vh-accent-dark: #92d13d;
  --vh-ink: #172033;
  --vh-text: #566176;
  --vh-muted: #8993a6;
  --vh-line: #e5e9f1;
  --vh-surface: #ffffff;
  --vh-surface-alt: #f6f7fb;
  --vh-dark: #11172a;
  --vh-radius-sm: 14px;
  --vh-radius: 22px;
  --vh-radius-lg: 34px;
  --vh-shadow: 0 22px 60px rgba(26, 35, 58, .10);
  --vh-shadow-sm: 0 10px 30px rgba(26, 35, 58, .07);
  --vh-transition: 180ms ease;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.vhoru-body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--vh-ink);
  background: var(--vh-surface-alt);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.vhoru-body { transition: opacity .3s ease; }
body.vhoru-body.page-transition-out { opacity: 0; }
body.vhoru-body.page-transition-in { opacity: 1; }

a { color: var(--vh-primary); text-decoration: none; transition: color var(--vh-transition), transform var(--vh-transition), background var(--vh-transition), border-color var(--vh-transition), box-shadow var(--vh-transition); }
a:hover { color: var(--vh-primary-dark); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.container { max-width: 1200px; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--vh-surface);
  opacity: 1;
  visibility: visible;
  transition: opacity .32s ease, visibility .32s ease;
}

#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.vhoru-loader {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vh-ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .1em;
}

.vhoru-loader .brand-mark { animation: loaderPulse 1s ease-in-out infinite alternate; }
@keyframes loaderPulse { to { transform: translateY(-4px) rotate(4deg); } }

.site-header {
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(229, 233, 241, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .navbar { padding: 0; }
.site-header .navbar > .container { gap: 28px; }

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: var(--vh-ink);
  white-space: nowrap;
}

.navbar-brand:hover { color: var(--vh-ink); }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  color: #fff;
  background: linear-gradient(145deg, var(--vh-primary), #8d61ff);
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(99, 91, 255, .27);
}

.brand-mark i { font-size: 22px; line-height: 1; }

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.brand-name small {
  margin-top: 5px;
  color: var(--vh-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.navbar-collapse { gap: 20px; }
.navbar-nav { align-items: center; gap: 4px; }

.navbar-nav .nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: var(--vh-text);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.navbar-nav .nav-link i { margin-right: 4px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--vh-primary); background: var(--vh-primary-soft); }

.header-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 9px 16px;
  color: #fff;
  background: var(--vh-dark);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.header-support:hover { color: #fff; background: var(--vh-primary); transform: translateY(-1px); }

.navbar-toggler {
  width: 45px;
  height: 43px;
  padding: 11px;
  border: 1px solid var(--vh-line);
  border-radius: 13px;
  box-shadow: none !important;
}

.navbar-toggler > span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--vh-ink);
  border-radius: 4px;
}

.hero-section {
  position: relative;
  padding: 36px 0 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(99, 91, 255, .15), transparent 66%);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  min-height: 570px;
  overflow: hidden;
  background: var(--vh-surface);
  border: 1px solid rgba(229, 233, 241, .9);
  border-radius: var(--vh-radius-lg);
  box-shadow: var(--vh-shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(42px, 7vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--vh-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 24px;
  color: var(--vh-ink);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.hero-copy h1 span { color: var(--vh-primary); }
.hero-copy p { max-width: 640px; margin: 0 0 32px; color: var(--vh-text); font-size: clamp(16px, 1.6vw, 19px); }

.primary-button,
.btn-outline-glitch,
.btn-glitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  color: #fff !important;
  background: var(--vh-primary);
  border: 1px solid var(--vh-primary);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(99, 91, 255, .23);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.primary-button:hover,
.btn-outline-glitch:hover,
.btn-glitch:hover { color: #fff !important; background: var(--vh-primary-dark); border-color: var(--vh-primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(99, 91, 255, .28); }
.primary-button--wide { width: 100%; }

.hero-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, rgba(185, 243, 107, .88), rgba(185, 243, 107, .32) 30%, transparent 31%),
    linear-gradient(145deg, #5e56f2, #8374ff 68%, #a06fff);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.growth-orbit { position: absolute; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.growth-orbit--one { width: 430px; height: 430px; top: 70px; left: 50%; transform: translateX(-50%); }
.growth-orbit--two { width: 310px; height: 310px; top: 130px; left: 50%; transform: translateX(-50%); }

.growth-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(72%, 320px);
  padding: 28px;
  color: var(--vh-ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(24, 25, 65, .28);
  transform: translate(-50%, -50%) rotate(-3deg);
  backdrop-filter: blur(10px);
}

.growth-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 28px; color: #fff; background: var(--vh-dark); border-radius: 17px; font-size: 24px; }
.growth-card small { display: block; margin-bottom: 4px; color: var(--vh-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.growth-card strong { display: block; font-size: 34px; font-weight: 800; letter-spacing: .05em; }
.growth-line { display: flex; align-items: end; gap: 8px; height: 90px; margin-top: 25px; }
.growth-line span { flex: 1; min-height: 18px; background: linear-gradient(to top, var(--vh-primary), #9b91ff); border-radius: 8px 8px 4px 4px; }
.growth-line span:nth-child(2) { height: 38%; }.growth-line span:nth-child(3) { height: 55%; }.growth-line span:nth-child(4) { height: 73%; }.growth-line span:nth-child(5) { height: 100%; background: var(--vh-accent-dark); }

.floating-pill { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--vh-ink); background: #fff; border-radius: 999px; box-shadow: 0 13px 34px rgba(24, 25, 65, .18); font-size: 12px; font-weight: 800; }
.floating-pill i { color: var(--vh-primary); }
.floating-pill--top { top: 112px; right: 28px; transform: rotate(3deg); }
.floating-pill--bottom { bottom: 104px; left: 24px; transform: rotate(-2deg); }

.platform-section,
.pricing-section,
.catalog-section,
.steps-section,
.content-section,
.order-status-section,
.white-intro-section { padding: 88px 0; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.section-heading .eyebrow, .catalog-heading .eyebrow, .pricing-intro .eyebrow { margin-bottom: 10px; }
.section-heading h2, .catalog-heading h2, .pricing-intro h2 { margin: 0; font-size: clamp(31px, 4vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -.04em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--vh-text); }
.section-heading--center { justify-content: center; text-align: center; }

.platform-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.platform-grid--compact { grid-template-columns: repeat(5, minmax(130px, 1fr)); margin-top: 38px; }

.platform-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  color: var(--vh-ink);
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  box-shadow: var(--vh-shadow-sm);
}

.platform-card::before { content: ""; position: absolute; right: -45px; bottom: -55px; width: 140px; height: 140px; background: var(--card-tint, var(--vh-primary-soft)); border-radius: 50%; transition: transform .25s ease; }
.platform-card:hover { color: var(--vh-ink); border-color: rgba(99,91,255,.35); transform: translateY(-6px); box-shadow: var(--vh-shadow); }
.platform-card:hover::before { transform: scale(1.2); }
.platform-card__number { position: absolute; top: 20px; left: 22px; color: var(--vh-muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.platform-card__name { position: relative; z-index: 1; align-self: end; font-size: 17px; font-weight: 800; }
.platform-card__name i { display: block; margin-bottom: 7px; font-size: 26px; }
.platform-card__arrow { position: absolute; z-index: 2; right: 18px; bottom: 18px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--vh-ink); background: rgba(255,255,255,.8); border: 1px solid rgba(23,32,51,.08); border-radius: 12px; }
.platform-card--instagram { --card-tint: #ffe5f2; }.platform-card--tiktok { --card-tint: #dffafa; }.platform-card--telegram { --card-tint: #e0f1ff; }.platform-card--facebook { --card-tint: #e8edff; }.platform-card--youtube { --card-tint: #ffe7e7; }
.platform-grid--compact .platform-card { min-height: 120px; }

.benefits-section { padding: 0 0 40px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--vh-dark); border-radius: var(--vh-radius); color: #fff; }
.benefit-card > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; color: var(--vh-dark); background: var(--vh-accent); border-radius: 13px; font-size: 20px; }
.benefit-card strong { display: block; margin-bottom: 4px; font-size: 15px; }
.benefit-card p { margin: 0; color: #aeb8ca; font-size: 13px; line-height: 1.55; }

.steps-section { background: var(--vh-surface); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article { position: relative; padding: 32px; background: var(--vh-surface-alt); border: 1px solid var(--vh-line); border-radius: var(--vh-radius); }
.steps-grid article > span { position: absolute; top: 23px; right: 25px; color: #c7cdda; font-size: 12px; font-weight: 800; }
.steps-grid article > i { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 28px; color: var(--vh-primary); background: var(--vh-primary-soft); border-radius: 16px; font-size: 23px; }
.steps-grid h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.steps-grid p { margin: 0; color: var(--vh-text); font-size: 14px; }

.page-title-section { position: relative; padding: 62px 0 56px; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--vh-dark), #252d51); }
.page-title-section::after { content: ""; position: absolute; right: -100px; bottom: -220px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(185,243,107,.32), transparent 68%); }
.page-title-section .container { position: relative; z-index: 1; }
.page-title-section .eyebrow { color: var(--vh-accent); }
.page-title-section h1 { max-width: 850px; margin: 0 0 12px; font-size: clamp(38px, 5vw, 62px); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; }
.page-title-section p { max-width: 580px; margin: 0; color: #b9c2d3; font-size: 16px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 30px; color: #8e9ab0; font-size: 12px; font-weight: 700; }
.breadcrumbs a { color: #c3ccdb; }.breadcrumbs a:hover { color: #fff; }.breadcrumbs i { font-size: 9px; }.breadcrumbs span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.catalog-heading, .pricing-intro { margin-bottom: 30px; }
.service-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.service-category-card { position: relative; display: flex; align-items: center; min-height: 105px; padding: 22px 62px 22px 22px; color: var(--vh-ink); background: var(--vh-surface); border: 1px solid var(--vh-line); border-radius: var(--vh-radius); box-shadow: var(--vh-shadow-sm); }
.service-category-card:hover { color: var(--vh-primary); border-color: rgba(99,91,255,.4); transform: translateY(-3px); box-shadow: var(--vh-shadow); }
.service-category-card__index { align-self: flex-start; margin-right: 12px; color: #bdc4d2; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.service-category-card strong { font-size: 15px; line-height: 1.4; }
.service-category-card > i { position: absolute; right: 20px; display: grid; place-items: center; width: 36px; height: 36px; color: var(--vh-primary); background: var(--vh-primary-soft); border-radius: 11px; }

.pricing-section { background: var(--vh-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; min-width: 0; padding: 27px; background: var(--vh-surface-alt); border: 1px solid var(--vh-line); border-radius: var(--vh-radius); transition: transform var(--vh-transition), border-color var(--vh-transition), box-shadow var(--vh-transition); }
.pricing-card:hover { border-color: rgba(99,91,255,.36); transform: translateY(-4px); box-shadow: var(--vh-shadow-sm); }
.pricing-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.pricing-card__label { color: var(--vh-muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card__check { display: grid; place-items: center; width: 34px; height: 34px; color: var(--vh-primary); background: var(--vh-primary-soft); border-radius: 11px; font-size: 18px; }
.pricing-card h3 { margin: 0 0 12px; font-size: 18px; font-weight: 800; line-height: 1.35; }
.pricing-card__description { margin: 0 0 22px; color: var(--vh-text); font-size: 13px; line-height: 1.55; }
.pricing-card__footer { display: flex; flex-direction: column; gap: 18px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--vh-line); }
.pricing-price { display: flex; align-items: baseline; gap: 5px; margin: 0; color: var(--vh-ink); }
.pricing-price .animated-counter { font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.pricing-price .currency { color: var(--vh-text); font-size: 14px; font-weight: 700; }
.pricing-card .primary-button { width: 100%; min-height: 48px; }

.modal-backdrop.show { opacity: .42; }
.modal-dialog { max-width: 560px; padding: 12px; }
.modal-content { overflow: hidden; border: 0; border-radius: 26px; box-shadow: 0 30px 90px rgba(17,23,42,.25); }
.modal-header { align-items: flex-start; padding: 26px 28px 18px; border: 0; }
.modal-kicker { display: block; margin-bottom: 5px; color: var(--vh-primary); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.modal-title { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.35; }
.modal-header .btn-close { width: 34px; height: 34px; margin: 0; padding: 0; background-size: 12px; border: 1px solid var(--vh-line); border-radius: 11px; opacity: 1; }
.modal-body { padding: 8px 28px 30px; }
.order-guidance { display: flex; gap: 13px; margin-bottom: 24px; padding: 16px; color: var(--vh-text); background: var(--vh-surface-alt); border-radius: 16px; }
.order-guidance > i { color: var(--vh-primary); font-size: 19px; }.order-guidance strong { display: block; margin-bottom: 3px; color: var(--vh-ink); font-size: 13px; }.order-guidance p { margin: 0; font-size: 12px; line-height: 1.55; }
.order-field label { display: block; margin-bottom: 8px; color: var(--vh-ink); font-size: 12px; font-weight: 800; }
.order-field .form-control { min-height: 54px; padding: 12px 15px; color: var(--vh-ink); background: var(--vh-surface); border: 1px solid #cfd5e0; border-radius: 14px !important; font-size: 14px; box-shadow: none; }
.order-field .form-control:focus { border-color: var(--vh-primary); box-shadow: 0 0 0 4px rgba(99,91,255,.12); }
.invalid-feedback { font-size: 11px; }
.order-total { margin: 20px 0; padding: 18px; color: var(--vh-ink); background: var(--vh-primary-soft); border-radius: 16px; font-size: 16px; font-weight: 800; text-align: center; }
.order-total hr { margin: 10px 0; border-color: rgba(99,91,255,.2); opacity: 1; }

.content-section,
.service_section.layout_padding { padding: 70px 0; }
.content-section .container,
.service_section.layout_padding .container { max-width: 940px; padding: clamp(24px, 5vw, 58px); background: var(--vh-surface); border: 1px solid var(--vh-line); border-radius: var(--vh-radius-lg); box-shadow: var(--vh-shadow-sm); }
.heading_container h1, .content-section h1 { margin: 0 0 30px; font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -.04em; }
.content-section h2, .service_section.layout_padding h2 { margin: 35px 0 12px; font-size: 21px; font-weight: 800; }
.content-section p, .content-section li, .service_section.layout_padding p, .service_section.layout_padding li { color: var(--vh-text); font-size: 14px; }
.content-section a, .service_section.layout_padding a { overflow-wrap: anywhere; }

.order-status-section { min-height: 70vh; }
.order-status-card { max-width: 600px; margin: 0 auto; padding: clamp(28px, 5vw, 48px); background: var(--vh-surface); border: 1px solid var(--vh-line); border-radius: var(--vh-radius-lg); box-shadow: var(--vh-shadow); text-align: center; }
.order-status-card__icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px; color: var(--vh-primary); background: var(--vh-primary-soft); border-radius: 20px; font-size: 27px; }
.order-status-card .eyebrow { margin-bottom: 5px; }
.order-status-card h1 { margin: 0 0 30px; font-size: clamp(32px, 5vw, 50px); font-weight: 800; letter-spacing: -.04em; }
.order-summary-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 15px 0; border-top: 1px solid var(--vh-line); text-align: left; }
.order-summary-row span { color: var(--vh-muted); font-size: 13px; }.order-summary-row strong { max-width: 65%; font-size: 14px; text-align: right; }
.order-summary-row--total { margin-bottom: 24px; }.order-summary-row--total strong { color: var(--vh-primary); font-size: 22px; }
.order-status-card__note { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 18px 0 0; color: var(--vh-muted); font-size: 11px; line-height: 1.5; }

.white-intro-section { min-height: 65vh; }
.white-intro-card { padding: clamp(34px, 7vw, 76px); background: var(--vh-surface); border: 1px solid var(--vh-line); border-radius: var(--vh-radius-lg); box-shadow: var(--vh-shadow); text-align: center; }
.white-intro-card h1 { max-width: 760px; margin: 0 auto 18px; font-size: clamp(38px, 6vw, 68px); font-weight: 800; line-height: 1.05; letter-spacing: -.05em; }
.white-intro-card > p { max-width: 710px; margin: 0 auto; color: var(--vh-text); font-size: 17px; }
.white-intro-card .platform-card { text-align: left; }

.site-footer { padding: 62px 0 18px; color: #fff; background: var(--vh-dark); }
.site-footer .navbar-brand { color: #fff; }
.site-footer .brand-name small { color: #8390a8; }
.footer-main { display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: clamp(35px, 7vw, 90px); padding-bottom: 46px; }
.footer-brand p { max-width: 340px; margin: 18px 0 0; color: #9da8ba; font-size: 13px; }
.footer-links, .footer-support { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links strong, .footer-support strong { margin-bottom: 15px; font-size: 13px; }
.footer-links a { padding: 4px 0; color: #9da8ba; font-size: 13px; }.footer-links a:hover { color: #fff; }
.footer-support p { max-width: 330px; margin: 0 0 15px; color: #9da8ba; font-size: 13px; }
.footer-support a { display: inline-flex; align-items: center; gap: 8px; color: var(--vh-accent); font-size: 13px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; color: #77839a; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }

.back-to-top { position: fixed; z-index: 950; right: 20px; bottom: 20px; display: grid; place-items: center; width: 46px; height: 46px; color: #fff; background: var(--vh-primary); border: 0; border-radius: 14px; box-shadow: 0 10px 25px rgba(99,91,255,.28); opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--vh-transition); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--vh-primary-dark); transform: translateY(-2px); }

/* Compatibility with legacy content classes. */
.glitch-text, .glitch-text-title, .glitch-text-subtle, .glitch-text-hero { animation: none !important; text-shadow: none !important; }
.pricing-card-glitch-effect { display: none !important; }
.transporent-white-text { color: inherit; }
.faq-section { padding: 70px 0; }
.faq-section .container { max-width: 940px; }
.accordion-item { overflow: hidden; margin-bottom: 10px; background: #fff; border: 1px solid var(--vh-line) !important; border-radius: 16px !important; }
.accordion-button { padding: 18px 20px; color: var(--vh-ink); background: #fff; font-size: 14px; font-weight: 800; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--vh-primary); background: var(--vh-primary-soft); }

@media (max-width: 1199.98px) {
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .platform-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .navbar-nav .nav-link { padding-inline: 8px !important; font-size: 12px; }
}

@media (max-width: 991.98px) {
  .site-header { padding: 10px 0; }
  .navbar-collapse { margin-top: 12px; padding: 16px; background: #fff; border: 1px solid var(--vh-line); border-radius: 18px; box-shadow: var(--vh-shadow-sm); }
  .navbar-nav { align-items: stretch; gap: 4px; }
  .navbar-nav .nav-link { padding: 11px 12px !important; font-size: 14px; }
  .header-support { width: 100%; margin-top: 10px; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .service-category-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  body.vhoru-body { font-size: 15px; }
  .hero-section { padding-top: 18px; }
  .hero-panel { border-radius: 26px; }
  .hero-copy { padding: 40px 25px 38px; }
  .hero-copy h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero-visual { min-height: 390px; }
  .growth-card { width: min(72%, 290px); padding: 23px; }
  .floating-pill--top { top: 60px; }.floating-pill--bottom { bottom: 58px; }
  .platform-section, .pricing-section, .catalog-section, .steps-section, .content-section, .order-status-section, .white-intro-section { padding: 62px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .platform-grid, .platform-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-card { min-height: 155px; }
  .benefit-grid, .steps-grid { grid-template-columns: 1fr; }
  .service-category-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 23px; }
  .page-title-section { padding: 44px 0; }
  .breadcrumbs { margin-bottom: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .modal-header { padding: 23px 20px 15px; }.modal-body { padding: 8px 20px 24px; }
  .white-intro-card { padding-inline: 22px; }
}

@media (max-width: 419.98px) {
  .brand-name small { display: none; }
  .brand-mark { width: 39px; height: 39px; flex-basis: 39px; border-radius: 12px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid--compact { grid-template-columns: 1fr 1fr; }
  .platform-grid--compact .platform-card { min-height: 105px; padding: 17px; }
  .platform-grid--compact .platform-card__arrow { right: 12px; bottom: 12px; }
  .floating-pill { font-size: 10px; }.floating-pill--top { right: 10px; }.floating-pill--bottom { left: 10px; }
  .order-summary-row { flex-direction: column; gap: 4px; }.order-summary-row strong { max-width: 100%; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
