*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #2563eb;
  --accent-light: #eff6ff;
  --accent-dark: #1e40af;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 3px;
}

.cv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 72px;
  transition: background 0.3s, box-shadow 0.3s;
}

.cv-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.cv-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.cv-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f59e0b;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #0f172a;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.cv-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #475569;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.cv-hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cv-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-mobile-menu.open {
  transform: translateX(0);
}

.cv-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
}

.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 2rem;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: #f59e0b;
}

.vk-hero {
  background: linear-gradient(150deg, #0c1a3a 0%, #1a2f6e 45%, #0e2244 100%);
  padding: 8.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.vk-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.vk-hero-orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
  animation: orb-drift 12s ease-in-out infinite;
}

.vk-hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: 5%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.12;
  animation: orb-drift 16s ease-in-out infinite reverse;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.04);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

.vk-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.vk-breadcrumb {
  position: absolute;
  top: 1.75rem;
  left: 0;
  right: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.vk-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color 0.2s;
}

.vk-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.vk-breadcrumb svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
}

.vk-breadcrumb .current {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.vk-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.vk-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.vk-hero-text h1 span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vk-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.vk-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.vk-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
  cursor: pointer;
}

.vk-btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.5);
}

.vk-btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transition: all 0.25s;
  cursor: pointer;
}

.vk-btn-wa-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.vk-hero-features {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vk-hf-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.vk-hf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}

.vk-hf-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.vk-hero-visual {
  position: relative;
}

.vk-process-arc {
  position: relative;
  width: 430px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vk-arc-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  animation: ring-spin 40s linear infinite;
}

.vk-arc-ring--outer {
  width: 290px;
  height: 290px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.07);
  animation-duration: 50s;
}

.vk-arc-ring--inner {
  width: 196px;
  height: 196px;
  border-color: rgba(255, 255, 255, 0.05);
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.vk-arc-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  z-index: 10;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.4);
  animation: arc-pulse 4s ease-in-out infinite;
}

@keyframes arc-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.06), 0 20px 56px rgba(0, 0, 0, 0.45);
  }
}

.vk-arc-icon {
  color: rgba(255, 255, 255, 0.9);
}

.vk-arc-center-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.2;
  padding: 0 0.5rem;
  letter-spacing: 0.01em;
}

.vk-arc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  animation: arc-spin 35s linear infinite;
}

@keyframes arc-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vk-arc-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: arc-step-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--step-delay, 0s);
}

@keyframes arc-step-in {
  from {
    opacity: 0;
    transform: scale(0.75) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.vk-arc-step--1 {
  top: 12px;
  left: 6px;
  align-items: flex-start;
}

.vk-arc-step--2 {
  top: 12px;
  right: 6px;
  align-items: flex-end;
}

.vk-arc-step--3 {
  bottom: 12px;
  left: 6px;
  align-items: flex-start;
}

.vk-arc-step--4 {
  bottom: 12px;
  right: 6px;
  align-items: flex-end;
}

.vk-arc-step--1 .vk-arc-step-card,
.vk-arc-step--3 .vk-arc-step-card {
  order: 2;
}

.vk-arc-step--1 .vk-arc-node,
.vk-arc-step--3 .vk-arc-node {
  order: 1;
}

.vk-arc-step--2 .vk-arc-step-card,
.vk-arc-step--4 .vk-arc-step-card {
  order: 2;
}

.vk-arc-step--2 .vk-arc-node,
.vk-arc-step--4 .vk-arc-node {
  order: 1;
}

.vk-arc-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  transition: all 0.2s;
}

.vk-arc-node--success {
  background: rgba(22, 163, 74, 0.2);
  border-color: #4ade80;
  color: #4ade80;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.25), 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.vk-arc-step-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  backdrop-filter: blur(16px);
  min-width: 155px;
  max-width: 168px;
  transition: all 0.25s;
  cursor: default;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.vk-arc-step-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.vk-arc-step-card--success {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(74, 222, 128, 0.3);
}

.vk-arc-step-card--success:hover {
  background: rgba(22, 163, 74, 0.18);
  border-color: rgba(74, 222, 128, 0.5);
}

.vk-arc-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.vk-arc-step-icon--success {
  background: rgba(22, 163, 74, 0.2);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.vk-arc-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.vk-arc-step-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.vk-arc-step-text span {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}




.vk-page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.vk-main-col {
  min-width: 0;
}

.vk-sidebar {
  position: sticky;
  top: 5.5rem;
}

.vk-content-section {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem;
  margin-bottom: 1.5rem;
}

.vk-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--accent-light);
  border-radius: 9999px;
}

.vk-content-section h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.vk-content-section p {
  color: #64748b;
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 0.875rem;
}

.vk-content-section p:last-child {
  margin-bottom: 0;
}

.vk-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.vk-doc-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.125rem;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  background: #fafcff;
  transition: all 0.2s ease;
  cursor: default;
}

.vk-doc-item:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.vk-doc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-opacity: 0.15;
}

.vk-doc-item:hover .vk-doc-icon {
  background: var(--accent);
}

.vk-doc-item:hover .vk-doc-icon svg {
  color: white;
}

.vk-doc-icon svg {
  color: var(--accent);
  transition: color 0.2s;
}

.vk-doc-text {
  min-width: 0;
}

.vk-doc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.vk-doc-desc {
  font-size: 0.775rem;
  color: #94a3b8;
  line-height: 1.5;
}

.vk-process-list {
  margin-top: 1.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.vk-process-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.25;
}

.vk-ps-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.vk-ps-item:last-child {
  margin-bottom: 0;
}

.vk-ps-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  background: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--accent-light);
}

.vk-ps-content {
  padding-top: 0.625rem;
  min-width: 0;
}

.vk-ps-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.375rem;
}

.vk-ps-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}

.vk-faq-list {
  margin-top: 1.5rem;
}

.vk-faq-item {
  border-bottom: 1px solid #f1f5f9;
}

.vk-faq-item:last-child {
  border-bottom: none;
}

.vk-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #0f172a;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.vk-faq-btn:hover {
  color: var(--accent);
}

.vk-faq-q {
  flex: 1;
  line-height: 1.4;
}

.vk-faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.vk-faq-arrow svg {
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.vk-faq-item.open .vk-faq-btn {
  color: var(--accent);
}

.vk-faq-item.open .vk-faq-arrow {
  background: var(--accent-light);
}

.vk-faq-item.open .vk-faq-arrow svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.vk-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.vk-faq-body.open {
  max-height: 500px;
}

.vk-faq-body p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.85;
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

.vk-cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.vk-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vk-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.vk-cta-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.vk-cta-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vk-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.vk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.vk-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  border-radius: 12px;
  background: #25D366;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.vk-btn-wa:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.vk-cta-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.vk-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vk-trust-badge svg {
  color: #4ade80;
  flex-shrink: 0;
}

.vk-categories-widget {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem;
}

.vk-cat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f1f5f9;
}

.vk-cat-header svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.vk-cat-grid {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.vk-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f8fafc;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
}

.vk-cat-item:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateX(3px);
}

.vk-cat-item svg {
  color: #cbd5e1;
  transition: color 0.2s;
  flex-shrink: 0;
}

.vk-cat-item:hover svg {
  color: var(--accent);
}

.vk-all-cats {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.625rem;
  border-radius: 10px;
  border: 1px dashed var(--accent);
  transition: all 0.2s;
  background: var(--accent-light);
  opacity: 0.8;
}

.vk-all-cats:hover {
  opacity: 1;
}

.vk-footer {
  background: #020617;
  color: #94a3b8;
  padding: 4rem 0 0;
}

.vk-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.vk-footer-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.vk-footer-socials {
  display: flex;
  gap: 0.625rem;
}

.vk-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}

.vk-social-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.vk-footer-heading {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.vk-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vk-footer-links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.2s;
  display: block;
  padding: 0.125rem 0;
}

.vk-footer-links a:hover {
  color: #f59e0b;
}

.vk-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vk-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

.vk-footer-contact li svg {
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}

.vk-footer-contact a {
  color: #94a3b8;
  transition: color 0.2s;
}

.vk-footer-contact a:hover {
  color: #f59e0b;
}

.vk-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #475569;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.vk-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vk-footer-legal a {
  color: #475569;
  transition: color 0.2s;
}

.vk-footer-legal a:hover {
  color: #94a3b8;
}

.vk-dynamic-content {
  margin-top: 1.25rem;
}

.vk-dynamic-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem;
}

.vk-dynamic-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.25rem 0 0.625rem;
}

.vk-dynamic-content p {
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
}

.vk-dynamic-content ul {
  list-style: none;
  padding: 0;
  margin: 0.875rem 0;
}

.vk-dynamic-content ul li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.vk-dynamic-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.vk-dynamic-content strong {
  color: #0f172a;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.15s;
}

.reveal-d2 {
  transition-delay: 0.3s;
}

.reveal-d3 {
  transition-delay: 0.45s;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .vk-hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
  }

  .vk-process-arc {
    width: 360px;
    height: 320px;
  }

  .vk-arc-step-card {
    min-width: 130px;
    max-width: 140px;
  }
}

@media (max-width: 1024px) {
  .vk-page-content {
    grid-template-columns: 1fr;
  }

  .vk-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .vk-cta-card {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .cv-nav-links {
    display: none;
  }

  .cv-hamburger {
    display: flex;
  }

  .vk-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vk-hero {
    padding: 7.5rem 0 4.5rem;
  }

  .vk-hero-text h1 {
    font-size: 2.5rem;
  }

  .vk-hero-lead {
    font-size: 1rem;
  }

  .vk-hero-visual {
    display: flex;
    justify-content: center;
  }

  .vk-process-arc {
    width: 100%;
    max-width: 420px;
    height: 340px;
  }

  .vk-arc-step-card {
    min-width: 130px;
    max-width: 145px;
  }
}

@media (max-width: 640px) {
  .vk-hero-text h1 {
    font-size: 2rem;
  }

  .vk-hero-lead {
    font-size: 0.97rem;
  }

  .vk-hero-features {
    gap: 0.6rem;
  }

  .vk-process-arc {
    height: 300px;
  }

  .vk-arc-center {
    width: 92px;
    height: 92px;
  }

  .vk-arc-step-card {
    min-width: 115px;
    max-width: 128px;
    padding: 0.5rem 0.65rem;
  }

  .vk-arc-step-text strong {
    font-size: 0.67rem;
  }

  .vk-arc-step-text span {
    font-size: 0.6rem;
  }

  .vk-arc-node {
    width: 32px;
    height: 32px;
    font-size: 0.65rem;
  }

  .vk-doc-grid {
    grid-template-columns: 1fr;
  }

  .vk-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .vk-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .vk-sidebar {
    grid-template-columns: 1fr;
  }

  .vk-content-section {
    padding: 1.5rem;
  }

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

  .vk-btn-apply,
  .vk-btn-wa-hero {
    justify-content: center;
  }
}


@media (max-width: 480px) {
  .vk-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .vk-hero-orb--1,
  .vk-hero-orb--2,
  .vk-arc-ring,
  .vk-arc-svg,
  .vk-arc-center,
  .vk-arc-step {
    animation: none !important;
  }
}