

:root {
  --vd-primary: #0a0f1e;
  --vd-surface: #0d1528;
  --vd-card: #111d35;
  --vd-card-hover: #152240;
  --vd-accent: #00d4ff;
  --vd-accent2: #7c3aed;
  --vd-accent3: #10b981;
  --vd-text: #e2e8f4;
  --vd-text-muted: #8899bb;
  --vd-text-dim: #5a6a8a;
  --vd-border: rgba(0, 212, 255, 0.15);
  --vd-border-subtle: rgba(255, 255, 255, 0.06);
  --vd-glow-cyan: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 60px rgba(0, 212, 255, 0.08);
  --vd-glow-purple: 0 0 20px rgba(124, 58, 237, 0.25), 0 0 60px rgba(124, 58, 237, 0.08);
  --vd-glow-green: 0 0 20px rgba(16, 185, 129, 0.25), 0 0 60px rgba(16, 185, 129, 0.08);
  --vd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4);
  --vd-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
  --vd-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
  --vd-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
  --vd-radius-xs: 6px;
  --vd-radius-sm: 10px;
  --vd-radius-md: 16px;
  --vd-radius-lg: 24px;
  --vd-radius-xl: 32px;
  --vd-space-xs: 0.5rem;
  --vd-space-sm: 1rem;
  --vd-space-md: 2rem;
  --vd-space-lg: 4rem;
  --vd-space-xl: 6rem;
  --vd-space-2xl: 8rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--vd-primary);
  color: var(--vd-text);
  font-family: 'Red Hat Text', sans-serif;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}


.vd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}


.vd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.3s ease;
}
.vd-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}
.vd-nav-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vd-accent), transparent);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vd-nav.scrolled .vd-nav-border { left: 0; right: 0; }
.vd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.vd-logo img { height: 36px; width: auto; }
.vd-logo-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vd-accent);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.vd-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.vd-nav-links a {
  color: var(--vd-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.vd-nav-links a:hover { color: var(--vd-accent); }
.vd-nav-cta {
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-accent2)) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--vd-radius-sm) !important;
  font-weight: 600 !important;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}
.vd-nav-cta:hover {
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5), 0 0 50px rgba(0, 212, 255, 0.2) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}
.vd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.vd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vd-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.vd-mobile-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.vd-mobile-sheet.active {
  display: block;
  pointer-events: all;
}
.vd-sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vd-mobile-sheet.active .vd-sheet-overlay { opacity: 1; }
.vd-sheet-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--vd-card);
  border-radius: 24px 24px 0 0;
  padding: 1rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--vd-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.05);
}
.vd-mobile-sheet.active .vd-sheet-panel { transform: translateY(0); }
.vd-sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.vd-sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.vd-sheet-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1rem;
  color: var(--vd-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--vd-radius-sm);
  transition: all 0.3s ease;
  min-height: 52px;
}
.vd-sheet-link i {
  width: 20px;
  color: var(--vd-text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.vd-sheet-link:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--vd-accent);
}
.vd-sheet-link:hover i { color: var(--vd-accent); }
.vd-sheet-cta {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--vd-accent);
  margin-top: 0.5rem;
}
.vd-sheet-cta i { color: var(--vd-accent); }


.vd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-accent2));
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--vd-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
  border: none;
  cursor: pointer;
  font-family: 'Red Hat Text', sans-serif;
  min-height: 48px;
}
.vd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
  color: #fff;
}
.vd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--vd-text);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--vd-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 48px;
  font-family: 'Red Hat Text', sans-serif;
  cursor: pointer;
}
.vd-btn-outline:hover {
  border-color: var(--vd-accent);
  color: var(--vd-accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}
.vd-btn-full { width: 100%; justify-content: center; }


.vd-gradient-text {
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.vd-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vd-accent);
  margin-bottom: 1rem;
}
.vd-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--vd-accent);
  border-radius: 1px;
}


.vd-link {
  color: var(--vd-accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.vd-link:hover { opacity: 0.8; text-decoration: underline; }


.vd-section {
  padding: var(--vd-space-xl) 0;
}
.vd-section-alt {
  background: var(--vd-surface);
  position: relative;
}
.vd-section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
}
.vd-section-alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
}
.vd-section-dark {
  background: #070c18;
  position: relative;
}
.vd-section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}
.vd-section-feature {
  background: var(--vd-primary);
  position: relative;
  overflow: hidden;
}
.vd-section-feature::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


.vd-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--vd-space-lg);
}
.vd-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.vd-section-desc {
  color: var(--vd-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}


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


.vd-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.vd-service-card {
  background: var(--vd-card);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vd-border-subtle);
  transition: all 0.4s ease;
  box-shadow: var(--vd-shadow-md);
  position: relative;
}
.vd-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vd-radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.vd-service-card[data-glow="cyan"] { border-color: rgba(0, 212, 255, 0.1); }
.vd-service-card[data-glow="purple"] { border-color: rgba(124, 58, 237, 0.1); }
.vd-service-card[data-glow="green"] { border-color: rgba(16, 185, 129, 0.1); }
.vd-service-card[data-glow="cyan"]:hover {
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}
.vd-service-card[data-glow="purple"]:hover {
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-purple);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}
.vd-service-card[data-glow="green"]:hover {
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-green);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}
.vd-service-img {
  height: 200px;
  overflow: hidden;
}
.vd-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vd-service-card:hover .vd-service-img img { transform: scale(1.05); }
.vd-service-body { padding: 1.75rem; }
.vd-service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.vd-service-icon.cyan { background: rgba(0, 212, 255, 0.12); color: var(--vd-accent); }
.vd-service-icon.purple { background: rgba(124, 58, 237, 0.12); color: var(--vd-accent2); }
.vd-service-icon.green { background: rgba(16, 185, 129, 0.12); color: var(--vd-accent3); }
.vd-service-card:hover .vd-service-icon.cyan { background: rgba(0, 212, 255, 0.2); box-shadow: 0 0 12px rgba(0, 212, 255, 0.3); }
.vd-service-card:hover .vd-service-icon.purple { background: rgba(124, 58, 237, 0.2); box-shadow: 0 0 12px rgba(124, 58, 237, 0.3); }
.vd-service-card:hover .vd-service-icon.green { background: rgba(16, 185, 129, 0.2); box-shadow: 0 0 12px rgba(16, 185, 129, 0.3); }
.vd-service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.vd-service-body p {
  color: var(--vd-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.vd-service-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.vd-service-more.open {
  max-height: 200px;
  margin-top: 0.75rem;
}
.vd-service-more p {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid var(--vd-border-subtle);
}
.vd-service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--vd-accent);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  font-family: 'Red Hat Text', sans-serif;
}
.vd-service-toggle:hover { opacity: 0.8; }
.vd-service-toggle i { transition: transform 0.3s ease; }
.vd-service-toggle.open i { transform: rotate(180deg); }


.vd-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vd-feature-img-wrap {
  position: relative;
  border-radius: var(--vd-radius-xl);
  overflow: hidden;
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-cyan);
  border: 1px solid rgba(0, 212, 255, 0.15);
}
.vd-feature-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vd-feature-img-wrap:hover img { transform: scale(1.03); }
.vd-feature-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.15);
}
.vd-feature-content p {
  color: var(--vd-text-muted);
  line-height: 1.7;
  font-size: 1rem;
}
.vd-feature-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.vd-fp {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vd-text);
  font-size: 0.95rem;
}
.vd-fp i {
  color: var(--vd-accent3);
  font-size: 0.85rem;
  flex-shrink: 0;
}


.vd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.vd-process-step {
  background: var(--vd-card);
  border-radius: var(--vd-radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--vd-border-subtle);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: var(--vd-shadow-sm);
}
.vd-process-step:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--vd-shadow-lg), 0 0 30px rgba(0, 212, 255, 0.08);
  transform: translateY(-4px);
}
.vd-step-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 255, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.vd-step-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.vd-process-step:hover .vd-step-icon {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.3);
}
.vd-process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.vd-process-step p {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}


.vd-cta-block {
  background: var(--vd-card);
  border-radius: var(--vd-radius-xl);
  padding: 3.5rem;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: var(--vd-shadow-lg), var(--vd-glow-cyan);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.vd-cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.vd-cta-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.vd-cta-content p {
  color: var(--vd-text-muted);
  font-size: 1rem;
}
.vd-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


.vd-page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.vd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.vd-page-hero-content { max-width: 680px; }
.vd-page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: #fff;
}
.vd-page-subtitle {
  font-size: 1.1rem;
  color: var(--vd-text-muted);
  line-height: 1.7;
  max-width: 560px;
}


.vd-team-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}
.vd-team-intro p {
  font-size: 1.1rem;
  color: var(--vd-text-muted);
  line-height: 1.7;
}
.vd-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vd-team-card {
  background: var(--vd-card);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vd-border-subtle);
  transition: all 0.4s ease;
  box-shadow: var(--vd-shadow-md);
}
.vd-team-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-cyan);
  transform: translateY(-6px);
}
.vd-team-img {
  height: 280px;
  overflow: hidden;
}
.vd-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vd-team-card:hover .vd-team-img img { transform: scale(1.05); }
.vd-team-info { padding: 1.75rem; }
.vd-team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.vd-team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vd-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.vd-team-info p {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.vd-team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.vd-team-skills span {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--vd-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}


.vd-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vd-values-content p {
  color: var(--vd-text-muted);
  line-height: 1.7;
}
.vd-values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.vd-value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.vd-value-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.vd-value-item:hover .vd-value-icon {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}
.vd-value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.vd-value-item p {
  font-size: 0.875rem;
  color: var(--vd-text-muted);
  line-height: 1.6;
}


.vd-pricing-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--vd-radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
}
.vd-pricing-note i {
  color: var(--vd-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.vd-pricing-note p {
  color: var(--vd-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.vd-pricing-section { margin-bottom: 3rem; }
.vd-pricing-cat {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vd-pricing-cat i { color: var(--vd-accent); font-size: 1rem; }
.vd-pricing-table {
  background: var(--vd-card);
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  border: 1px solid var(--vd-border-subtle);
  box-shadow: var(--vd-shadow-md);
}
.vd-pt-row {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--vd-border-subtle);
  transition: background 0.3s ease;
}
.vd-pt-row:last-child { border-bottom: none; }
.vd-pt-row:not(.vd-pt-header):hover { background: rgba(0, 212, 255, 0.03); }
.vd-pt-header {
  background: rgba(0, 212, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vd-text-muted);
}
.vd-pt-row span:first-child {
  font-weight: 600;
  color: var(--vd-text);
  font-size: 0.9rem;
}
.vd-pt-row span:nth-child(2) {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
}
.vd-price {
  font-weight: 700;
  color: var(--vd-accent) !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
}


.vd-form-page {
  padding-top: 100px;
  min-height: 100vh;
}
.vd-form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.vd-form-header { margin-bottom: 3rem; }
.vd-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.vd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vd-form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vd-text);
}
.vd-input {
  background: var(--vd-card);
  border: 1px solid var(--vd-border-subtle);
  border-radius: var(--vd-radius-sm);
  padding: 0.875rem 1rem;
  color: var(--vd-text);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}
.vd-input:focus {
  border-color: var(--vd-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12), 0 0 20px rgba(0, 212, 255, 0.08);
  background: var(--vd-card-hover);
}
.vd-input::placeholder { color: var(--vd-text-dim); }
.vd-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238899bb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.vd-select option { background: var(--vd-card); color: var(--vd-text); }
.vd-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.vd-form-helper {
  font-size: 0.8rem;
  color: var(--vd-text-dim);
  line-height: 1.5;
}
.vd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--vd-text-muted);
  line-height: 1.5;
}
.vd-checkbox { display: none; }
.vd-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 1px;
}
.vd-checkbox:checked + .vd-checkbox-custom {
  background: var(--vd-accent);
  border-color: var(--vd-accent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}
.vd-checkbox:checked + .vd-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 7px; height: 11px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}


.vd-contact-page { padding-top: 0; }
.vd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 2rem 4rem;
  align-items: start;
}
.vd-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.vd-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.vd-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.vd-contact-item:hover .vd-contact-icon {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}
.vd-contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vd-text-muted);
  margin-bottom: 0.2rem;
}
.vd-contact-item p, .vd-contact-item a {
  color: var(--vd-text);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}
.vd-urgent-block {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--vd-radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.08);
}
.vd-urgent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.vd-urgent-header i { color: #f59e0b; font-size: 1rem; }
.vd-urgent-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.vd-urgent-block p {
  font-size: 0.875rem;
  color: var(--vd-text-muted);
  line-height: 1.6;
}
.vd-form-card {
  background: var(--vd-card);
  border-radius: var(--vd-radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--vd-border-subtle);
  box-shadow: var(--vd-shadow-xl), var(--vd-glow-cyan);
}
.vd-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}
.vd-map-section {
  padding: 3rem 0 5rem;
}
.vd-map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.vd-map-wrap {
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-xl);
  border: 1px solid var(--vd-border-subtle);
}


.vd-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px - 60px);
  padding: 2rem;
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-accent2));
  margin-top: 72px;
}
.vd-thanks-content {
  text-align: center;
  max-width: 560px;
}
.vd-thanks-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}
.vd-thanks-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.vd-thanks-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.vd-thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--vd-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.vd-thanks-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}


.vd-legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.vd-legal-header {
  max-width: 800px;
  margin-bottom: 3rem;
}
.vd-legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.vd-legal-date {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
}
.vd-legal-body {
  max-width: 800px;
  line-height: 1.75;
}
.vd-legal-body > p {
  color: var(--vd-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.vd-legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
}
.vd-legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vd-text);
  margin: 1.5rem 0 0.5rem;
}
.vd-legal-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vd-legal-list li {
  color: var(--vd-text-muted);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.vd-legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--vd-accent);
}
.vd-legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--vd-radius-md);
  box-shadow: var(--vd-shadow-md);
}
.vd-legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vd-card);
  font-size: 0.875rem;
}
.vd-legal-table th {
  background: rgba(0, 212, 255, 0.08);
  color: var(--vd-text-muted);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--vd-border-subtle);
}
.vd-legal-table td {
  padding: 0.875rem 1rem;
  color: var(--vd-text-muted);
  border-bottom: 1px solid var(--vd-border-subtle);
  vertical-align: top;
}
.vd-legal-table tr:last-child td { border-bottom: none; }
.vd-legal-table tr:hover td { background: rgba(0, 212, 255, 0.02); }
.vd-legal-dl {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vd-legal-dl dt {
  font-weight: 700;
  color: var(--vd-text);
  font-size: 0.9rem;
  padding: 0.75rem 1rem 0.2rem;
  background: rgba(0, 212, 255, 0.04);
  border-left: 2px solid var(--vd-accent);
  margin-top: 0.5rem;
}
.vd-legal-dl dd {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
  padding: 0.3rem 1rem 0.75rem;
  border-left: 2px solid rgba(0, 212, 255, 0.1);
}


.vd-footer {
  border-top: 1px solid var(--vd-border-subtle);
  padding: 1.5rem 2rem;
  background: var(--vd-primary);
}
.vd-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vd-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vd-footer-links a {
  color: var(--vd-text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.vd-footer-links a:hover { color: var(--vd-accent); }
.vd-footer-copy {
  color: var(--vd-text-dim);
  font-size: 0.8rem;
  white-space: nowrap;
}


.vd-cookie-link {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 21, 40, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 0.875rem;
  color: var(--vd-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.vd-cookie-link:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--vd-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 212, 255, 0.15);
}
.vd-cookie-link i { font-size: 0.7rem; }
.vd-cookie-link.vd-pulse { animation: vdCookiePulse 2s ease 1s 3; }
@keyframes vdCookiePulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 20px rgba(0,212,255,0.35); }
}
.vd-cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vd-cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.vd-cookie-modal {
  background: var(--vd-card);
  border-radius: var(--vd-radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--vd-shadow-xl), 0 0 60px rgba(0, 212, 255, 0.1);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.vd-cookie-modal-overlay.active .vd-cookie-modal {
  transform: scale(1) translateY(0);
}
.vd-cookie-modal h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.vd-cookie-modal > p {
  color: var(--vd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.vd-cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--vd-border-subtle);
  border-radius: var(--vd-radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vd-cookie-category-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.2rem;
}
.vd-cookie-category-info p {
  font-size: 0.78rem;
  color: var(--vd-text-muted);
  line-height: 1.4;
}
.vd-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.vd-toggle input { display: none; }
.vd-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.vd-toggle input:checked + .vd-toggle-track {
  background: var(--vd-accent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}
.vd-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.vd-toggle input:checked + .vd-toggle-track::after { transform: translateX(20px); }
.vd-toggle-disabled .vd-toggle-track { cursor: not-allowed; opacity: 0.5; }
.vd-cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.vd-cookie-btn-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-accent2));
  color: #fff;
  border: none;
  border-radius: var(--vd-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Red Hat Text', sans-serif;
  min-height: 44px;
}
.vd-cookie-btn-primary:hover { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.vd-cookie-btn-secondary {
  flex: 1;
  background: transparent;
  color: var(--vd-text-muted);
  border: 1px solid var(--vd-border-subtle);
  border-radius: var(--vd-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Red Hat Text', sans-serif;
  min-height: 44px;
}
.vd-cookie-btn-secondary:hover {
  border-color: var(--vd-accent);
  color: var(--vd-accent);
}


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


@media (max-width: 1024px) {
  .vd-process-grid { grid-template-columns: repeat(2, 1fr); }
  .vd-feature-split { gap: 3rem; }
  .vd-values-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .vd-nav-links { display: none; }
  .vd-hamburger { display: flex; }
  .vd-services-grid { grid-template-columns: 1fr; }
  .vd-team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .vd-feature-split { grid-template-columns: 1fr; }
  .vd-values-grid { grid-template-columns: 1fr; }
  .vd-contact-layout { grid-template-columns: 1fr; padding: 120px 1.5rem 3rem; }
  .vd-cta-block { flex-direction: column; padding: 2.5rem; }
  .vd-cta-actions { width: 100%; }
  .vd-hero-inner { grid-template-columns: 1fr; }
  .vd-hero-cards { display: none; }
  .vd-hero { padding: 100px 1.5rem 60px; }
}

@media (max-width: 640px) {
  :root {
    --vd-space-xl: 4rem;
    --vd-space-lg: 2.5rem;
  }
  .vd-container { padding: 0 1.25rem; }
  .vd-nav { padding: 0 1.25rem; }
  .vd-process-grid { grid-template-columns: 1fr; }
  .vd-pt-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .vd-pt-row span:nth-child(2) { display: none; }
  .vd-footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .vd-footer-links { justify-content: center; }
  .vd-form-container { padding: 2rem 1.25rem 4rem; }
  .vd-form-card { padding: 1.5rem; }
  .vd-legal-page { padding: 100px 0 60px; }
  .vd-page-hero { padding: 110px 0 50px; }
  .vd-feature-img-wrap img { height: 280px; }
  .vd-cookie-modal { padding: 1.75rem; }
  .vd-cookie-actions { flex-direction: column; }
}