:root {
  --vh-primary: #6c5ce7;
  --vh-secondary: #a29bfe;
  --vh-accent: #fd79a8;
  --vh-dark: #2d3436;
  --vh-light: #f8f9fa;
  --vh-gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --vh-gradient-accent: linear-gradient(135deg, #fd79a8 0%, #6c5ce7 100%);
  --vh-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
  --vh-shadow-sm: 0 5px 20px rgba(108, 92, 231, 0.1);
  --vh-radius: 16px;
  --vh-radius-sm: 8px;
  --vh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

.vh-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vh-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,92,231,0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: vh-float 8s ease-in-out infinite;
}

.vh-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253,121,168,0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: vh-float 6s ease-in-out infinite reverse;
}

@keyframes vh-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.vh-hero-content { position: relative; z-index: 2; }
.vh-hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; }
.vh-hero .vh-gradient-text { background: var(--vh-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vh-hero p { font-size: 1.15rem; opacity: 0.85; line-height: 1.8; }

.vh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--vh-transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.vh-btn-primary { background: var(--vh-gradient); color: #fff; box-shadow: var(--vh-shadow-sm); }
.vh-btn-primary:hover { transform: translateY(-3px); box-shadow: var(--vh-shadow); color: #fff; }
.vh-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.vh-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-3px); }

.vh-hero-image {
  position: relative;
  z-index: 2;
}

.vh-hero-image img {
  border-radius: var(--vh-radius);
  box-shadow: var(--vh-shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--vh-transition);
  width: 100%;
}

.vh-hero-image img:hover { transform: perspective(1000px) rotateY(0deg); }

.vh-section { padding: 100px 0; position: relative; }

.vh-section-title { text-align: center; margin-bottom: 60px; }
.vh-section-title .vh-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(108,92,231,0.1);
  color: var(--vh-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vh-section-title h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.vh-section-title p { font-size: 1.1rem; color: #636e72; max-width: 600px; margin: 0 auto; }

.vh-feature-card {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--vh-transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.vh-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vh-gradient);
  transform: scaleX(0);
  transition: var(--vh-transition);
}

.vh-feature-card:hover { transform: translateY(-10px); box-shadow: var(--vh-shadow); }
.vh-feature-card:hover::before { transform: scaleX(1); }

.vh-feature-card .vh-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--vh-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.vh-feature-card h5 { font-weight: 700; margin-bottom: 12px; font-size: 1.15rem; }
.vh-feature-card p { color: #636e72; font-size: 0.95rem; line-height: 1.7; margin: 0; }

.vh-counter-section { background: var(--vh-gradient); padding: 60px 0; }
.vh-counter-item { text-align: center; color: #fff; }
.vh-counter-item .vh-counter-number { font-size: 2.8rem; font-weight: 800; }
.vh-counter-item .vh-counter-label { font-size: 1rem; opacity: 0.85; margin-top: 4px; }

.vh-testimonial-card {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 35px;
  box-shadow: var(--vh-shadow-sm);
  position: relative;
  height: 100%;
}

.vh-testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 25px;
  color: var(--vh-secondary);
  opacity: 0.3;
  line-height: 1;
}

.vh-testimonial-card .vh-testimonial-text { font-size: 1rem; line-height: 1.8; color: #2d3436; margin-bottom: 20px; font-style: italic; }
.vh-testimonial-card .vh-testimonial-author { display: flex; align-items: center; gap: 12px; }
.vh-testimonial-card .vh-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--vh-gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; }
.vh-testimonial-card .vh-testimonial-name { font-weight: 700; font-size: 0.95rem; margin: 0; }
.vh-testimonial-card .vh-testimonial-role { font-size: 0.85rem; color: #636e72; margin: 0; }

.vh-pricing-card {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--vh-transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  height: 100%;
}

.vh-pricing-card:hover { transform: translateY(-10px); box-shadow: var(--vh-shadow); }
.vh-pricing-card.vh-pricing-popular { border: 2px solid var(--vh-primary); box-shadow: var(--vh-shadow); transform: scale(1.05); }
.vh-pricing-card.vh-pricing-popular:hover { transform: scale(1.05) translateY(-10px); }

.vh-pricing-card .vh-pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--vh-gradient);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vh-pricing-card .vh-pricing-type { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--vh-primary); font-weight: 600; margin-bottom: 8px; }
.vh-pricing-card .vh-pricing-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.vh-pricing-card .vh-pricing-price { font-size: 3rem; font-weight: 800; color: var(--vh-dark); margin-bottom: 4px; }
.vh-pricing-card .vh-pricing-price small { font-size: 1rem; font-weight: 400; color: #636e72; }
.vh-pricing-card .vh-pricing-desc { color: #636e72; font-size: 0.95rem; margin-bottom: 24px; }
.vh-pricing-card ul { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.vh-pricing-card ul li { padding: 8px 0; font-size: 0.95rem; color: #2d3436; display: flex; align-items: center; gap: 10px; }
.vh-pricing-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--vh-primary); }

.vh-lead-form {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 40px;
  box-shadow: var(--vh-shadow);
}

.vh-lead-form .form-control {
  border-radius: var(--vh-radius-sm);
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  font-size: 0.95rem;
  transition: var(--vh-transition);
}

.vh-lead-form .form-control:focus { border-color: var(--vh-primary); box-shadow: 0 0 0 4px rgba(108,92,231,0.1); }

.vh-lead-form label { font-weight: 600; font-size: 0.9rem; color: #2d3436; margin-bottom: 6px; }

.vh-footer {
  background: #0f0c29;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

.vh-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--vh-transition); }
.vh-footer a:hover { color: #fff; }

.vh-footer h5 { color: #fff; font-weight: 700; margin-bottom: 20px; font-size: 1.1rem; }

.vh-footer ul { list-style: none; padding: 0; margin: 0; }
.vh-footer ul li { padding: 6px 0; }

.vh-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 40px; text-align: center; font-size: 0.9rem; }

.vh-stats-section { background: #f8f9fa; }

.vh-navbar {
  background: rgba(15,12,41,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vh-navbar .navbar-nav .nav-link { color: rgba(255,255,255,0.8) !important; font-weight: 500; padding: 8px 16px !important; border-radius: 8px; transition: var(--vh-transition); }
.vh-navbar .navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.1); }
.vh-navbar .navbar-brand img { filter: brightness(0) invert(1); }

.vh-navbar .navbar-toggler { border-color: rgba(255,255,255,0.3); }
.vh-navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.vh-page-header {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vh-page-header::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108,92,231,0.2) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.vh-page-header h1 { font-size: 3rem; font-weight: 800; color: #fff; position: relative; z-index: 2; }
.vh-page-header p { color: rgba(255,255,255,0.7); font-size: 1.15rem; position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.vh-contact-info { background: #fff; border-radius: var(--vh-radius); padding: 30px; box-shadow: var(--vh-shadow-sm); height: 100%; transition: var(--vh-transition); }
.vh-contact-info:hover { box-shadow: var(--vh-shadow); transform: translateY(-5px); }
.vh-contact-info .vh-contact-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--vh-gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; margin-bottom: 16px; }
.vh-contact-info h5 { font-weight: 700; margin-bottom: 8px; }
.vh-contact-info p { color: #636e72; margin: 0; }

.vh-cta-section { background: var(--vh-gradient); padding: 80px 0; text-align: center; }
.vh-cta-section h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.vh-cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }

.vh-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.vh-fade-in.vh-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .vh-hero h1 { font-size: 2.5rem; }
  .vh-hero { min-height: auto; padding: 120px 0 60px; }
  .vh-hero-image { margin-top: 40px; }
  .vh-hero-image img { transform: none; }
  .vh-pricing-card.vh-pricing-popular { transform: scale(1); }
  .vh-pricing-card.vh-pricing-popular:hover { transform: translateY(-10px); }
  .vh-section-title h2 { font-size: 2rem; }
  .vh-page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
  .vh-hero h1 { font-size: 1.8rem; }
  .vh-section { padding: 60px 0; }
  .vh-section-title h2 { font-size: 1.6rem; }
  .vh-counter-item .vh-counter-number { font-size: 2rem; }
  .vh-page-header h1 { font-size: 1.8rem; }
  .vh-lead-form { padding: 24px; }
  .vh-pricing-card.vh-pricing-popular { transform: none; }
  .vh-navbar { background: #0f0c29 !important; }
}

.vh-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.vh-pricing-toggle .vh-toggle-label { font-weight: 600; color: #636e72; cursor: pointer; transition: var(--vh-transition); font-size: 1rem; }
.vh-pricing-toggle .vh-toggle-label.active { color: var(--vh-dark); }

.vh-pricing-toggle .vh-toggle-switch {
  width: 56px;
  height: 28px;
  background: #e9ecef;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: var(--vh-transition);
}

.vh-pricing-toggle .vh-toggle-switch::after {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--vh-primary);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: var(--vh-transition);
}

.vh-pricing-toggle .vh-toggle-switch.active::after { left: 30px; }

.vh-plan-modules { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 16px 0; }
.vh-plan-modules span { background: rgba(108,92,231,0.08); color: var(--vh-primary); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

.swiper-pagination-bullet-active { background: var(--vh-primary) !important; }

.lead-form-container {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
  border-radius: var(--vh-radius);
  padding: 50px;
  color: #fff;
}

.lead-form-container h3 { font-weight: 700; margin-bottom: 12px; }
.lead-form-container p { opacity: 0.8; margin-bottom: 30px; }

.lead-form-container .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--vh-radius-sm);
  padding: 12px 16px;
}

.lead-form-container .form-control::placeholder { color: rgba(255,255,255,0.5); }
.lead-form-container .form-control:focus { background: rgba(255,255,255,0.15); border-color: var(--vh-secondary); box-shadow: none; }
.lead-form-container label { font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
