.vd-landing {
  --foreground: 146 20% 12%;
  --card: 0 0% 100%;
  --primary: 142 62% 38%;
  --accent: 84 62% 56%;
  --muted: 120 20% 96%;
  --muted-foreground: 140 8% 40%;
  --border: 130 20% 88%;
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(
      circle at 0% 0%,
      hsl(var(--primary) / 0.08) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 0%,
      hsl(var(--accent) / 0.08) 0,
      transparent 35%
    ),
    hsl(var(--muted) / 0.35);
  color: hsl(var(--foreground));
  scroll-behavior: smooth;
}

.vd-landing,
.vd-landing *,
.vd-landing *::before,
.vd-landing *::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

.vd-landing .container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.vd-landing .gradient-text {
  background: linear-gradient(135deg, hsl(142 72% 28%), hsl(98 62% 34%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.vd-landing .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vd-landing .icon-glyph {
  font-style: normal;
  line-height: 1;
}

.vd-landing .icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}

.vd-landing .icon-sm {
  width: 1rem;
  height: 1rem;
}

.vd-landing .icon-primary {
  color: hsl(var(--primary));
}

.vd-landing .vd-navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: hsl(0 0% 100% / 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.vd-landing .vd-navbar-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vd-landing .vd-navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.vd-landing .vd-navbar-logo {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid hsl(135 36% 82%);
}

.vd-landing .vd-navbar-brand-text {
  display: grid;
  gap: 0.14rem;
}

.vd-landing .vd-navbar-brand-name {
  color: hsl(153 58% 28%);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.vd-landing .vd-navbar-brand-tagline {
  color: hsl(152 25% 42%);
  font-size: 0.58rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vd-landing .vd-navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.vd-landing .vd-navbar-link {
  color: hsl(153 18% 18%);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  padding: 0.38rem 0;
  border-bottom: 3px solid transparent;
}

.vd-landing .vd-navbar-link-active {
  color: hsl(var(--primary));
  border-bottom-color: hsl(var(--primary));
}

.vd-landing .vd-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vd-landing .vd-navbar-btn {
  min-width: 9.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.93rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.vd-landing .vd-navbar-btn-primary {
  color: #fff;
  background: hsl(146 82% 28%);
  border: 1px solid hsl(146 82% 28%);
}

.vd-landing .vd-navbar-btn-outline {
  color: hsl(146 52% 30%);
  background: #fff;
  border: 1px solid hsl(146 26% 70%);
}

.vd-landing .vd-navbar-btn,
.vd-landing .vd-ecosystem-hero-btn,
.vd-landing .vd-software-btn,
.vd-landing .vd-software-cta,
.vd-landing .vd-contact-cta-link {
  position: relative;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    filter 180ms ease;
  will-change: transform;
}

.vd-landing .vd-navbar-btn:hover,
.vd-landing .vd-ecosystem-hero-btn:hover,
.vd-landing .vd-software-btn:hover,
.vd-landing .vd-software-cta:hover,
.vd-landing .vd-contact-cta-link:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.05) brightness(1.03);
  box-shadow: 0 14px 26px -18px hsl(140 70% 10% / 0.55);
}

.vd-landing .vd-navbar-btn:focus-visible,
.vd-landing .vd-ecosystem-hero-btn:focus-visible,
.vd-landing .vd-software-btn:focus-visible,
.vd-landing .vd-software-cta:focus-visible,
.vd-landing .vd-contact-cta-link:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px hsl(84 96% 68% / 0.35),
    0 14px 26px -18px hsl(140 70% 10% / 0.55);
}

.vd-landing .vd-navbar-btn::after,
.vd-landing .vd-ecosystem-hero-btn::after,
.vd-landing .vd-software-btn::after,
.vd-landing .vd-software-cta::after,
.vd-landing .vd-contact-cta-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    hsl(0 0% 100% / 0.24) 48%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 420ms ease;
  pointer-events: none;
  z-index: -1;
}

.vd-landing .vd-navbar-btn:hover::after,
.vd-landing .vd-ecosystem-hero-btn:hover::after,
.vd-landing .vd-software-btn:hover::after,
.vd-landing .vd-software-cta:hover::after,
.vd-landing .vd-contact-cta-link:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

@media (prefers-reduced-motion: reduce) {
  .vd-landing .vd-navbar-btn,
  .vd-landing .vd-ecosystem-hero-btn,
  .vd-landing .vd-software-btn,
  .vd-landing .vd-software-cta,
  .vd-landing .vd-contact-cta-link {
    transition: none;
  }

  .vd-landing .vd-navbar-btn::after,
  .vd-landing .vd-ecosystem-hero-btn::after,
  .vd-landing .vd-software-btn::after,
  .vd-landing .vd-software-cta::after,
  .vd-landing .vd-contact-cta-link::after {
    transition: none;
  }

  .vd-landing .vd-navbar-btn:hover,
  .vd-landing .vd-ecosystem-hero-btn:hover,
  .vd-landing .vd-software-btn:hover,
  .vd-landing .vd-software-cta:hover,
  .vd-landing .vd-contact-cta-link:hover,
  .vd-landing .vd-navbar-btn:focus-visible,
  .vd-landing .vd-ecosystem-hero-btn:focus-visible,
  .vd-landing .vd-software-btn:focus-visible,
  .vd-landing .vd-software-cta:focus-visible,
  .vd-landing .vd-contact-cta-link:focus-visible {
    transform: none;
  }
}

@media (max-width: 1199px) {
  .vd-landing .vd-navbar-inner {
    min-height: 4.8rem;
    gap: 0.8rem;
  }

  .vd-landing .vd-navbar-menu {
    gap: 1rem;
  }

  .vd-landing .vd-navbar-link {
    font-size: 0.8rem;
  }

  .vd-landing .vd-navbar-btn {
    min-width: 7.8rem;
    padding: 0.72rem 0.85rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .vd-landing .vd-navbar-inner {
    min-height: 4.5rem;
  }

  .vd-landing .vd-navbar-menu {
    display: none;
  }
}

@media (max-width: 700px) {
  .vd-landing .vd-navbar {
    position: static;
  }

  .vd-landing .vd-navbar-inner {
    min-height: 0;
    flex-wrap: wrap;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .vd-landing .vd-navbar-logo {
    width: 2.9rem;
    height: 2.9rem;
  }

  .vd-landing .vd-navbar-brand-name {
    font-size: 1.5rem;
  }

  .vd-landing .vd-navbar-brand-tagline {
    font-size: 0.5rem;
  }

  .vd-landing .vd-navbar-actions {
    width: 100%;
  }

  .vd-landing .vd-navbar-btn {
    flex: 1;
    min-width: 0;
  }
}

.vd-landing .vd-ecosystem-hero-section {
  padding: 0 0;
}

.vd-landing .vd-ecosystem-hero-section .container {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.vd-landing .vd-ecosystem-hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1700 / 760;
  min-height: 280px;
  border-radius: 0;
  background-color: hsl(145 62% 18%);
  background-image: var(--vd-hero-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 1.8rem 0.7rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  box-shadow: none;
}

.vd-landing .vd-ecosystem-hero-content {
  max-width: min(48rem, 58%);
  margin-top: clamp(0.9rem, 2vw, 2.1rem);
  margin-left: clamp(0.6rem, 1.1vw, 1.4rem);
}

.vd-landing .vd-ecosystem-hero-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid hsl(139 72% 46% / 0.55);
  background: hsl(144 72% 14% / 0.75);
  color: hsl(84 100% 77%);
  padding: 0.35rem 0.8rem;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vd-landing .vd-ecosystem-hero-title {
  margin: 1.5rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 3.1rem);
  line-height: 1.08;
  font-weight: 900;
}

.vd-landing .vd-ecosystem-hero-title-highlight {
  display: block;
  color: hsl(52 100% 56%);
}

.vd-landing .vd-ecosystem-hero-desc {
  margin: 0.62rem 0 0;
  color: hsl(0 0% 92%);
  font-size: clamp(0.92rem, 1.2vw, 1.3rem);
  line-height: 1.38;
  max-width: 40rem;
}

.vd-landing .vd-ecosystem-hero-benefits {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.82rem;
}

.vd-landing .vd-ecosystem-hero-benefit {
  color: hsl(95 92% 82%);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.2;
  font-weight: 700;
}

.vd-landing .vd-ecosystem-hero-benefit::before {
  content: "+ ";
  color: hsl(84 100% 61%);
}

.vd-landing .vd-ecosystem-hero-actions {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vd-landing .vd-ecosystem-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border-radius: 9999px;
  padding: 0.8rem 1.3rem;
  font-size: 1.03rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.vd-landing .vd-ecosystem-hero-btn-primary {
  color: hsl(142 72% 14%);
  border: 1px solid hsl(52 100% 56%);
  background: hsl(52 100% 56%);
}

.vd-landing .vd-ecosystem-hero-btn-secondary {
  color: #fff;
  border: 1px solid hsl(0 0% 100% / 0.62);
  background: hsl(145 35% 10% / 0.35);
}

.vd-landing .vd-ecosystem-hero-stats {
  margin-top: 1.2rem;
  width: min(44rem, 50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: hsl(0 0% 100% / 0.95);
}

.vd-landing .vd-ecosystem-hero-stat {
  display: grid;
  gap: 0.14rem;
  padding: 0.12rem 0.25rem;
  text-align: center;
}

.vd-landing .vd-ecosystem-hero-stat-value {
  margin: 0;
  color: hsl(149 60% 28%);
  font-size: clamp(1.65rem, 1.6vw, 2.05rem);
  line-height: 1.05;
  font-weight: 900;
}

.vd-landing .vd-ecosystem-hero-stat-label {
  margin: 0;
  color: hsl(153 17% 30%);
  font-size: clamp(0.96rem, 0.92vw, 1.15rem);
  line-height: 1.2;
  font-weight: 700;
}

.vd-landing .vd-ecosystem-hero-trust {
  margin-top: 1.5rem;
  padding-top: 0.45rem;
  border-top: 1px solid hsl(149 47% 50% / 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.75rem;
  width: min(44rem, 62%);
}

.vd-landing .vd-ecosystem-hero-trust-lead {
  color: hsl(112 57% 80%);
  font-size: 0.62rem;
  line-height: 1.2;
  font-weight: 700;
}

.vd-landing .vd-ecosystem-hero-trust-item {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .vd-landing .vd-ecosystem-hero-art {
    aspect-ratio: auto;
    min-height: clamp(520px, 58vw, 680px);
    padding: 1.7rem 1.4rem 1rem;
    background-image:
      radial-gradient(
        circle at 20% 20%,
        hsl(137 56% 38% / 0.55),
        transparent 36%
      ),
      radial-gradient(
        circle at 80% 18%,
        hsl(97 72% 58% / 0.34),
        transparent 28%
      ),
      linear-gradient(135deg, hsl(146 72% 18%), hsl(149 58% 14%));
    background-position: center center;
    background-size: cover;
  }

  .vd-landing .vd-ecosystem-hero-content {
    max-width: 56%;
    margin-top: 0.75rem;
    margin-left: 0.5rem;
  }

  .vd-landing .vd-ecosystem-hero-title {
    font-size: clamp(1.35rem, 2.45vw, 2.8rem);
  }

  .vd-landing .vd-ecosystem-hero-desc {
    font-size: clamp(0.9rem, 1.05vw, 1.12rem);
  }

  .vd-landing .vd-ecosystem-hero-actions {
    margin-top: 2.3rem;
  }

  .vd-landing .vd-ecosystem-hero-stats {
    width: min(40rem, 54%);
  }
}

@media (min-width: 900px) and (max-width: 1199.98px) {
  .vd-landing .vd-ecosystem-hero-art {
    min-height: clamp(520px, 56vw, 640px);
    padding: 1.8rem 1.5rem 1.7rem;
    background-position: center top;
  }

  .vd-landing .vd-ecosystem-hero-content {
    max-width: 60%;
    margin-top: 0.4rem;
  }

  .vd-landing .vd-ecosystem-hero-stats {
    width: min(42rem, 60%);
    margin-top: 1rem;
  }

  .vd-landing .vd-ecosystem-hero-trust {
    width: min(42rem, 62%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.6rem;
    align-items: start;
    justify-items: start;
    margin-top: 1rem;
  }

  .vd-landing .vd-ecosystem-hero-trust-lead {
    grid-column: 1 / -1;
  }

  .vd-landing .vd-ecosystem-hero-trust-lead,
  .vd-landing .vd-ecosystem-hero-trust-item {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .vd-landing .vd-ecosystem-hero-trust-item {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.vd-landing .site-footer {
  margin-top: 1.2rem;
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
  border-top: 4px solid hsl(var(--primary));
}

.vd-landing .vd-contact-cta-section {
  margin: 0;
  padding: 0;
}

.vd-landing .vd-contact-cta-section .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.vd-landing .vd-contact-cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 2.2rem 1rem 2rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      45rem 20rem at -10% 100%,
      hsl(147 83% 48% / 0.28),
      transparent 62%
    ),
    radial-gradient(
      40rem 22rem at 110% 100%,
      hsl(202 86% 53% / 0.35),
      transparent 65%
    ),
    linear-gradient(105deg, hsl(148 78% 38%), hsl(202 70% 47%));
}

.vd-landing .vd-contact-cta-title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
}

.vd-landing .vd-contact-cta-desc {
  margin: 0.75rem auto 0;
  max-width: 58rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: hsl(0 0% 100% / 0.93);
}

.vd-landing .vd-contact-cta-link {
  margin: 1.2rem auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 9999px;
  padding: 0.42rem 1.2rem 0.42rem 0.42rem;
  background: #fff;
  color: hsl(173 62% 42%);
  text-decoration: none;
  box-shadow: 0 8px 20px hsl(0 0% 0% / 0.18);
}

.vd-landing .vd-contact-cta-link-icon-wrap {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(151 66% 44%), hsl(183 62% 46%));
  box-shadow: 0 0 0 3px hsl(0 0% 100% / 0.75) inset;
}

.vd-landing .vd-contact-cta-link-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.vd-landing .vd-contact-cta-link-text {
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.vd-landing .vd-software-section {
  padding: 0 1.8rem;
  background:
    radial-gradient(
      52rem 26rem at 15% 15%,
      hsl(145 58% 34% / 0.42),
      transparent 62%
    ),
    radial-gradient(
      45rem 22rem at 92% 85%,
      hsl(132 68% 24% / 0.52),
      transparent 65%
    ),
    linear-gradient(140deg, hsl(152 74% 12%), hsl(146 72% 16%));
}

.vd-landing .vd-software-head {
  text-align: center;
}

.vd-landing .vd-software-title {
  margin: 0;
  color: hsl(84 90% 70%);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 900;
}

.vd-landing .vd-software-desc {
  margin: 0.55rem auto 0;
  max-width: 48rem;
  color: hsl(0 0% 92%);
  font-size: 0.88rem;
  line-height: 1.5;
}

.vd-landing .vd-software-actions {
  margin: 0.85rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vd-landing .vd-software-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.58rem 0.95rem;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.vd-landing .vd-software-btn-primary {
  color: hsl(145 82% 14%);
  border: 1px solid hsl(52 100% 58%);
  background: hsl(52 100% 58%);
}

.vd-landing .vd-software-btn-ghost {
  color: hsl(0 0% 100%);
  border: 1px solid hsl(0 0% 100% / 0.62);
  background: hsl(145 32% 10% / 0.4);
}

.vd-landing .vd-software-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.vd-landing .vd-software-card {
  position: relative;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 0.9rem 0.8rem 0.85rem;
  box-shadow: 0 4px 16px -8px hsl(218 40% 42% / 0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.vd-landing .vd-software-hot {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 2rem;
  border-radius: 1rem 0 0.75rem 0;
  background: hsl(358 88% 60%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.vd-landing .vd-software-image-wrap {
  margin: 0.7rem auto 0;
  width: clamp(12rem, 18vw, 22rem);
  min-height: clamp(10.8rem, 22vw, 13.8rem);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.vd-landing .vd-software-image {
  width: 100%;
  max-height: clamp(10.8rem, 22vw, 13.8rem);
  height: auto;
  object-fit: contain;
  display: block;
}

.vd-landing .vd-software-name {
  margin: 0.75rem 0 0;
  color: hsl(138 52% 33%);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  min-height: 2.4rem;
  position: relative;
  z-index: 1;
}

.vd-landing .vd-software-price {
  margin: 0.45rem 0 0;
  color: hsl(217 39% 18%);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.vd-landing .vd-software-price span {
  font-size: 0.58rem;
  color: hsl(216 28% 36%);
  font-weight: 600;
}

.vd-landing .vd-software-cta {
  margin-top: 0.5rem;
  width: 100%;
  min-height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.vd-landing .vd-software-cta-outline {
  color: hsl(145 68% 22%);
  border: 1px solid hsl(141 48% 66%);
  background: hsl(0 0% 100%);
}

.vd-landing .vd-software-cta-blue {
  color: #fff;
  border: 1px solid hsl(148 78% 33%);
  background: hsl(148 78% 33%);
}

.vd-landing .vd-software-cta-orange {
  color: hsl(27 74% 16%);
  border: 1px solid hsl(46 100% 60%);
  background: linear-gradient(135deg, hsl(52 100% 63%), hsl(41 100% 56%));
}

.vd-landing .vd-values-section {
  padding: 0.75rem 0 2.25rem;
  background:
    radial-gradient(
      48rem 22rem at 10% 8%,
      hsl(141 56% 32% / 0.45),
      transparent 62%
    ),
    radial-gradient(
      42rem 20rem at 88% 90%,
      hsl(132 66% 24% / 0.5),
      transparent 66%
    ),
    linear-gradient(150deg, hsl(151 72% 12%), hsl(145 68% 14%));
}

.vd-landing .vd-values-head {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.vd-landing .vd-values-title {
  margin: 0.6rem 0 0;
  color: hsl(0 0% 98%);
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 900;
}

.vd-landing .vd-values-section .gradient-text {
  background: linear-gradient(135deg, hsl(84 96% 72%), hsl(52 100% 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.vd-landing .vd-values-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vd-landing .vd-values-layout {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.vd-landing .vd-values-layout:not(.has-videos) {
  grid-template-columns: 1fr;
}

.vd-landing .vd-values-layout .vd-values-grid {
  margin-top: 0;
  grid-template-columns: 1fr;
}

.vd-landing .vd-values-layout:not(.has-videos) .vd-values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vd-landing .vd-video-panel {
  min-height: 100%;
  border-radius: 1.5rem;
  padding: 1rem;
  background: linear-gradient(180deg, hsl(0 0% 100% / 0.18), hsl(0 0% 100% / 0.10));
  border: 1px solid hsl(0 0% 100% / 0.25);
  box-shadow: 0 24px 50px -30px hsl(141 68% 6% / 0.72);
  backdrop-filter: blur(4px);
}

.vd-landing .vd-video-panel-title {
  margin: 0 0 1rem;
  color: hsl(0 0% 98%);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 900;
}

.vd-landing .vd-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vd-landing .vd-video-card {
  border-radius: 1.15rem;
  overflow: hidden;
  background: hsl(0 0% 100% / 0.14);
  border: 1px solid hsl(0 0% 100% / 0.25);
  box-shadow: 0 18px 30px -24px hsl(141 68% 6% / 0.72);
  backdrop-filter: blur(3px);
}

.vd-landing .vd-video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.vd-landing .vd-video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vd-landing .vd-value-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  border: 1px solid hsl(0 0% 100% / 0.22);
  border-radius: 1.35rem;
  background: linear-gradient(165deg, hsl(0 0% 100% / 0.96), hsl(0 0% 100% / 0.90) 62%, hsl(0 0% 100% / 0.82));
  box-shadow: 0 18px 36px -24px hsl(141 68% 6% / 0.72), 0 1px 0 hsl(0 0% 100% / 0.7) inset;
  backdrop-filter: blur(4px);
  padding: 1.15rem 1.1rem 1.05rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.vd-landing .vd-value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, hsl(84 96% 70%), hsl(145 80% 38%));
  opacity: 0.85;
}

.vd-landing .vd-value-card:hover {
  transform: translateY(-4px);
  border-color: hsl(84 95% 72% / 0.45);
  box-shadow:
    0 22px 36px -22px hsl(141 76% 8% / 0.8),
    0 1px 0 hsl(0 0% 100% / 0.68) inset;
}

.vd-landing .vd-value-card-optimize {
  background: hsl(var(--card));
}

.vd-landing .vd-value-card-tech {
  background: hsl(var(--card));
}

.vd-landing .vd-value-card-service {
  background: hsl(var(--card));
}

.vd-landing .vd-value-card-growth {
  background: hsl(var(--card));
}

.vd-landing .vd-value-card-quality {
  background: hsl(var(--card));
}

.vd-landing .vd-value-icon-wrap {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid hsl(0 0% 100% / 0.72);
  box-shadow: 0 10px 18px -12px hsl(145 32% 22% / 0.55), 0 1px 0 hsl(0 0% 100% / 0.6) inset;
}

.vd-landing .vd-value-icon-glyph {
  font-size: 1.3rem;
  line-height: 1;
}

.vd-landing .vd-value-icon-optimize {
  background: hsl(160 35% 89%);
}

.vd-landing .vd-value-icon-tech {
  background: hsl(188 40% 89%);
}

.vd-landing .vd-value-icon-service {
  background: hsl(219 31% 90%);
}

.vd-landing .vd-value-icon-growth {
  background: hsl(24 42% 89%);
}

.vd-landing .vd-value-icon-quality {
  background: hsl(355 32% 89%);
}

.vd-landing .vd-value-card-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: hsl(152 35% 14%);
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 900;
}

.vd-landing .vd-value-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.vd-landing .vd-value-dot-optimize {
  background: hsl(155 58% 42%);
}

.vd-landing .vd-value-dot-tech {
  background: hsl(190 60% 50%);
}

.vd-landing .vd-value-dot-service {
  background: hsl(220 46% 64%);
}

.vd-landing .vd-value-dot-growth {
  background: hsl(21 88% 54%);
}

.vd-landing .vd-value-dot-quality {
  background: hsl(358 75% 59%);
}

.vd-landing .vd-value-list {
  margin: 0.82rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.vd-landing .vd-value-item {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.48rem;
}

.vd-landing .vd-value-index {
  min-width: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 800;
}

.vd-landing .vd-value-index-optimize {
  color: hsl(155 58% 42%);
}

.vd-landing .vd-value-index-tech {
  color: hsl(190 60% 50%);
}

.vd-landing .vd-value-index-service {
  color: hsl(220 46% 64%);
}

.vd-landing .vd-value-index-growth {
  color: hsl(21 88% 54%);
}

.vd-landing .vd-value-index-quality {
  color: hsl(358 75% 59%);
}

.vd-landing .vd-value-text {
  color: hsl(152 14% 33%);
  font-size: 0.88rem;
  line-height: 1.55;
  min-width: 0;
  word-break: break-word;
}

.vd-landing .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.vd-landing .footer-col {
  min-width: 0;
}

.vd-landing .footer-col-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.vd-landing .footer-brand-col {
  max-width: 18rem;
}

.vd-landing .footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.vd-landing .footer-brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid hsl(var(--border));
  display: block;
  max-width: 100%;
}

.vd-landing .footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vd-landing .footer-brand-name {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: hsl(143 65% 37%);
}

.vd-landing .footer-brand-subtitle {
  color: hsl(152 25% 42%);
  font-size: 0.58rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vd-landing .footer-brand-desc {
  margin: 0.85rem 0 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.5;
}

.vd-landing .footer-col-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.vd-landing .footer-col-link {
  color: inherit;
  text-decoration: none;
}

.vd-landing .footer-col-link:hover {
  color: hsl(var(--primary));
}

.vd-landing .footer-socials {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.vd-landing .footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: hsl(var(--card));
  box-shadow: 0 2px 12px -2px hsl(146 20% 12% / 0.08);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.vd-landing .footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

.vd-landing .footer-contact-title {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.vd-landing .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.375rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.vd-landing .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vd-landing .footer-bottom-wrap {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.vd-landing .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.vd-landing .footer-bottom-text {
  margin: 0;
}

@media (min-width: 768px) {
  .vd-landing .vd-ecosystem-hero-section {
    padding-top: 0;
  }

  .vd-landing .vd-ecosystem-hero-art {
    border-radius: 0;
    padding: 2.15rem 2.3rem 0.8rem;
  }

  .vd-landing .vd-ecosystem-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.7rem;
    width: min(40rem, 58%);
  }

  .vd-landing .vd-ecosystem-hero-stat {
    text-align: center;
    padding: 0.12rem 0.1rem;
  }
}

@media (min-width: 768px) {
  .vd-landing .vd-values-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .vd-landing .vd-values-title {
    font-size: 2.3rem;
  }

  .vd-landing .vd-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .vd-landing .vd-software-section {
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }

  .vd-landing .vd-software-title {
    font-size: 2.05rem;
  }

  .vd-landing .vd-software-desc {
    font-size: 1.05rem;
  }

  .vd-landing .vd-software-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .vd-landing .vd-contact-cta-shell {
    border-radius: 0;
    padding: 2.9rem 2rem 2.6rem;
  }

  .vd-landing .vd-contact-cta-title {
    font-size: 2.25rem;
  }

  .vd-landing .vd-contact-cta-desc {
    margin-top: 1rem;
    font-size: 1.05rem;
  }

  .vd-landing .vd-contact-cta-link {
    margin-top: 1.5rem;
    padding-right: 1.5rem;
  }

  .vd-landing .vd-contact-cta-link-text {
    font-size: 1.06rem;
  }

  .vd-landing .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-landing .footer-bottom {
    flex-direction: row;
  }

  .vd-landing .footer-brand-col {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .vd-landing .vd-ecosystem-hero-art {
    aspect-ratio: auto;
    min-height: clamp(430px, 66vw, 520px);
    background-position: right center;
    padding: 1.3rem 1rem 0.9rem;
  }

  .vd-landing .vd-ecosystem-hero-content {
    max-width: 100%;
    margin-top: 0.2rem;
    margin-left: clamp(0.6rem, 1.1vw, 1.4rem);
  }

  .vd-landing .vd-ecosystem-hero-stats {
    width: min(34rem, 92%);
  }

  .vd-landing .vd-ecosystem-hero-trust {
    width: min(34rem, 92%);
    justify-content: center;
    gap: 0.25rem 0.55rem;
  }

  .vd-landing .vd-ecosystem-hero-trust-lead,
  .vd-landing .vd-ecosystem-hero-trust-item {
    font-size: 0.7rem;
  }

  .vd-landing .vd-ecosystem-hero-trust-item {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .vd-landing .vd-ecosystem-hero-art {
    min-height: clamp(360px, 96vw, 460px);
    padding: 1.05rem 0.9rem 0.95rem;
    background-image:
      radial-gradient(
        circle at 20% 20%,
        hsl(137 56% 38% / 0.5),
        transparent 34%
      ),
      radial-gradient(
        circle at 78% 16%,
        hsl(97 72% 58% / 0.28),
        transparent 26%
      ),
      linear-gradient(135deg, hsl(146 72% 18%), hsl(149 58% 14%));
    background-position: center top;
    background-size: cover;
  }

  .vd-landing .vd-ecosystem-hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .vd-landing .vd-ecosystem-hero-title {
    margin-top: 1rem;
    font-size: clamp(1.15rem, 6vw, 2rem);
  }

  .vd-landing .vd-ecosystem-hero-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .vd-landing .vd-ecosystem-hero-benefits {
    margin-top: 1.1rem;
    gap: 0.35rem 0.7rem;
  }

  .vd-landing .vd-ecosystem-hero-benefit {
    font-size: 0.92rem;
  }

  .vd-landing .vd-ecosystem-hero-actions {
    margin-top: 1.3rem;
    flex-direction: column;
    align-items: stretch;
  }

  .vd-landing .vd-ecosystem-hero-btn {
    width: 100%;
  }

  .vd-landing .vd-ecosystem-hero-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.95rem;
    padding: 0.8rem 0.85rem;
  }

  .vd-landing .vd-ecosystem-hero-stat {
    text-align: center;
    padding: 0.12rem 0.1rem;
  }

  .vd-landing .vd-ecosystem-hero-stat-value {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }

  .vd-landing .vd-ecosystem-hero-stat-label {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .vd-landing .vd-ecosystem-hero-trust {
    display: flex;
    justify-content: center;
    gap: 0.2rem 0.45rem;
    margin-top: 0.95rem;
    padding-top: 0.3rem;
  }

  .vd-landing .vd-ecosystem-hero-trust-lead,
  .vd-landing .vd-ecosystem-hero-trust-item {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .vd-landing .vd-ecosystem-hero-trust-item {
    white-space: normal;
  }
}

@media (min-width: 1200px) {
  .vd-landing .vd-ecosystem-hero-art {
    aspect-ratio: auto;
    min-height: clamp(580px, 44vw, 690px);
    padding: 2rem 1.8rem 1.55rem;
  }

  .vd-landing .vd-ecosystem-hero-content {
    margin-top: clamp(1.7rem, 2.9vw, 2.8rem);
  }

  .vd-landing .vd-ecosystem-hero-actions {
    margin-top: 2.4rem;
  }

  .vd-landing .vd-ecosystem-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    width: min(47rem, 52%);
    margin-top: 1rem;
  }

  .vd-landing .vd-ecosystem-hero-stat {
    text-align: left;
    padding-left: 0.3rem;
  }

  .vd-landing .vd-ecosystem-hero-trust {
    width: min(47rem, 56%);
    margin-top: 1rem;
  }

  .vd-landing .vd-ecosystem-hero-trust-item {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 1024px) {
  .vd-landing .vd-software-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .vd-landing .vd-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .vd-landing .vd-values-layout .vd-values-grid {
    grid-template-columns: 1fr;
  }

  .vd-landing .vd-values-layout:not(.has-videos) .vd-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vd-landing .vd-value-card {
    padding: 1.15rem 1.1rem 1.05rem;
  }

  .vd-landing .vd-value-card-title {
    font-size: 1.04rem;
  }

  .vd-landing .vd-value-text {
    font-size: 0.9rem;
  }

  .vd-landing .footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/* WordPress / Flatsome safety overrides */
.vd-landing-shortcode{width:100%;max-width:100%;overflow:hidden;position:relative;display:block;}
.vd-landing-shortcode main,.vd-landing-shortcode section,.vd-landing-shortcode header,.vd-landing-shortcode footer,.vd-landing-shortcode article,.vd-landing-shortcode nav,.vd-landing-shortcode div{margin:0;}
.vd-landing-shortcode p,.vd-landing-shortcode h1,.vd-landing-shortcode h2,.vd-landing-shortcode h3,.vd-landing-shortcode h4,.vd-landing-shortcode ul,.vd-landing-shortcode ol{margin-top:0;}
.vd-landing-shortcode ul,.vd-landing-shortcode ol{padding-left:0;}
.vd-landing-shortcode img{max-width:100%;height:auto;display:block;}
.vd-landing-shortcode a{text-decoration:none;}
.vd-landing-shortcode .container{float:none !important;}
.vd-landing-shortcode .row,.vd-landing-shortcode .row:not(.row-collapse),.vd-landing-shortcode .columns,.vd-landing-shortcode .col{max-width:none;width:auto;margin:0;padding:0;}
.vd-landing-shortcode .section,.vd-landing-shortcode .section-content,.vd-landing-shortcode .banner,.vd-landing-shortcode .banner-layers{background:none;border:0;min-height:0;padding:0;margin:0;}
@media (max-width: 1024px){.vd-landing-shortcode .vd-navbar-menu{display:none;}.vd-landing-shortcode .vd-navbar-inner{flex-wrap:wrap;justify-content:space-between;}.vd-landing-shortcode .vd-navbar-actions{width:100%;justify-content:flex-end;}}
@media (max-width: 767px){.vd-landing-shortcode .vd-navbar-actions{justify-content:stretch;}.vd-landing-shortcode .vd-navbar-btn{flex:1;min-width:0;}.vd-landing-shortcode .vd-navbar-brand-name{font-size:1.55rem;}.vd-landing-shortcode .site-footer .footer-grid{gap:1.2rem;}}


/* v1.0.1 update */
.vd-landing .vd-navbar{display:none !important;}


@media (max-width: 1024px) {
  .vd-landing .vd-values-layout {
    grid-template-columns: 1fr;
  }

  .vd-landing .vd-values-layout:not(.has-videos) .vd-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .vd-landing .vd-values-layout:not(.has-videos) .vd-values-grid,
  .vd-landing .vd-video-grid {
    grid-template-columns: 1fr;
  }

  .vd-landing .vd-value-card {
    padding: 1rem 0.95rem;
  }
}


/* v1.2.5 premium values card fix */
.vd-landing .vd-values-layout.has-videos {
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr) !important;
  gap: 1.6rem !important;
}

.vd-landing .vd-values-layout.has-videos .vd-values-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.vd-landing .vd-value-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  border-radius: 22px !important;
  padding: 1.35rem 1.25rem 1.25rem !important;
  box-shadow: 0 18px 42px -24px rgba(15, 79, 191, .24), 0 2px 0 rgba(255,255,255,.75) inset !important;
}

.vd-landing .vd-value-icon-wrap {
  width: 3.5rem !important;
  height: 3.5rem !important;
  margin-bottom: 1rem !important;
}

.vd-landing .vd-value-card-title {
  display: block !important;
  margin: 0 0 .85rem !important;
  font-size: 1.55rem !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  color: #0f4fbf !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  text-wrap: balance;
}

.vd-landing .vd-value-list {
  gap: .72rem !important;
  margin-top: .65rem !important;
}

.vd-landing .vd-value-item {
  grid-template-columns: 1.5rem minmax(0, 1fr) !important;
  gap: .6rem !important;
}

.vd-landing .vd-value-index {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: #0f4fbf !important;
}

.vd-landing .vd-value-text {
  font-size: 1rem !important;
  line-height: 1.58 !important;
  color: #26466f !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 1024px) {
  .vd-landing .vd-values-layout.has-videos {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .vd-landing .vd-value-card {
    padding: 1.15rem 1rem 1.05rem !important;
    border-radius: 18px !important;
  }

  .vd-landing .vd-value-card-title {
    font-size: 1.18rem !important;
    line-height: 1.15 !important;
  }

  .vd-landing .vd-value-text {
    font-size: .95rem !important;
  }
}

/* v1.2.6 card title no-collapse fix */
.vd-landing .vd-values-layout,
.vd-landing .vd-values-grid,
.vd-landing .vd-values-layout > *,
.vd-landing .vd-value-card {
  min-width: 0 !important;
  width: 100% !important;
}

.vd-landing .vd-values-layout.has-videos {
  grid-template-columns: minmax(440px, 560px) minmax(0, 1fr) !important;
  align-items: start !important;
}

.vd-landing .vd-values-layout.has-videos .vd-values-grid,
.vd-landing .vd-values-layout:not(.has-videos) .vd-values-grid {
  width: 100% !important;
}

.vd-landing .vd-value-card-title {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  line-break: auto !important;
  hyphens: none !important;
}

.vd-landing .vd-value-list,
.vd-landing .vd-value-item,
.vd-landing .vd-value-text {
  min-width: 0 !important;
  width: 100% !important;
}

@media (max-width: 1200px) {
  .vd-landing .vd-values-layout.has-videos {
    grid-template-columns: minmax(380px, 480px) minmax(0, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .vd-landing .vd-value-card-title {
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }
}

/* v1.2.7 SNT consultation form replacing value card */
.vd-landing .vd-values-layout.has-videos {
  grid-template-columns: minmax(520px, 640px) minmax(0, 1fr) !important;
  gap: 1.6rem !important;
}

.vd-landing .vd-consult-form-card {
  width: 100% !important;
  min-width: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 125, 255, .14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,248,255,.94));
  border: 1px solid rgba(47,125,255,.18);
  box-shadow: 0 22px 55px rgba(15, 79, 191, .13), 0 2px 0 rgba(255,255,255,.9) inset;
}

.vd-landing .vd-consult-form-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0f4fbf, #2f7dff, #6ee7ff);
}

.vd-landing .vd-consult-form-head {
  margin-bottom: 1rem;
}

.vd-landing .vd-consult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .34rem .72rem;
  border-radius: 999px;
  background: rgba(47, 125, 255, .1);
  border: 1px solid rgba(47, 125, 255, .22);
  color: #0f4fbf;
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}

.vd-landing .vd-consult-title {
  margin: .72rem 0 .35rem !important;
  color: #0f4fbf !important;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  letter-spacing: -.03em;
  white-space: normal !important;
  word-break: normal !important;
}

.vd-landing .vd-consult-desc {
  margin: 0;
  color: #35527a;
  font-size: .98rem;
  line-height: 1.55;
}

.vd-landing .vd-consult-alert {
  margin: .75rem 0 1rem;
  padding: .78rem .9rem;
  border-radius: 14px;
  font-weight: 750;
  font-size: .92rem;
  line-height: 1.4;
}

.vd-landing .vd-consult-alert-success {
  color: #075b36;
  background: rgba(38, 191, 118, .12);
  border: 1px solid rgba(38, 191, 118, .24);
}

.vd-landing .vd-consult-alert-error {
  color: #9b1c1c;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .22);
}

.vd-landing .vd-consult-form {
  display: grid;
  gap: .9rem;
}

.vd-landing .vd-consult-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .82rem;
}

.vd-landing .vd-consult-form label {
  display: grid;
  gap: .38rem;
  margin: 0 !important;
  color: #183d73;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.25;
}

.vd-landing .vd-consult-form label span {
  color: #ef174f;
}

.vd-landing .vd-consult-form input,
.vd-landing .vd-consult-form select,
.vd-landing .vd-consult-form textarea {
  width: 100% !important;
  min-height: 46px;
  border-radius: 14px !important;
  border: 1px solid rgba(47,125,255,.22) !important;
  background: rgba(255,255,255,.92) !important;
  color: #17345d !important;
  padding: .72rem .86rem !important;
  font-size: .95rem !important;
  line-height: 1.35 !important;
  outline: none !important;
  box-shadow: 0 10px 24px rgba(15,79,191,.06) !important;
}

.vd-landing .vd-consult-form textarea {
  min-height: 112px;
  resize: vertical;
}

.vd-landing .vd-consult-form input:focus,
.vd-landing .vd-consult-form select:focus,
.vd-landing .vd-consult-form textarea:focus {
  border-color: rgba(47,125,255,.72) !important;
  box-shadow: 0 0 0 4px rgba(47,125,255,.12), 0 10px 24px rgba(15,79,191,.08) !important;
}

.vd-landing .vd-consult-file input {
  padding: .62rem .72rem !important;
}

.vd-landing .vd-consult-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f4fbf, #2f7dff);
  color: #fff;
  font-weight: 950;
  font-size: 1rem;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(47,125,255,.26);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.vd-landing .vd-consult-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 36px rgba(47,125,255,.32);
}

@media (max-width: 1200px) {
  .vd-landing .vd-values-layout.has-videos {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .vd-landing .vd-consult-row {
    grid-template-columns: 1fr;
  }
  .vd-landing .vd-consult-form-card {
    border-radius: 20px;
    padding: 1.05rem;
  }
}

/* v1.4.6 FINAL - compact premium contact form, preserves original plugin layout */
.vd-landing .vd-values-layout.has-videos{grid-template-columns:minmax(500px,630px) minmax(0,1fr)!important;gap:1.35rem!important;align-items:start!important}
.vd-landing .vd-consult-form-card.vd-consult-final-ui{width:100%!important;max-width:100%!important;min-width:0!important;position:relative!important;overflow:hidden!important;border-radius:22px!important;padding:1.05rem 1.22rem 1.18rem!important;background:radial-gradient(circle at 88% 10%,rgba(45,126,255,.16),transparent 24%),linear-gradient(145deg,#fff 0%,#f7fbff 60%,#f1f7ff 100%)!important;border:1px solid rgba(59,130,246,.18)!important;box-shadow:0 18px 38px rgba(15,79,191,.13),0 1px 0 rgba(255,255,255,.95) inset!important}
.vd-landing .vd-consult-form-card.vd-consult-final-ui:before{height:3px!important;background:linear-gradient(90deg,#0957d9,#2f7dff,#7dd3fc)!important}
.vd-landing .vd-consult-form-card.vd-consult-final-ui:after{content:"";position:absolute;right:-34px;top:-42px;width:220px;height:165px;border-radius:46% 0 0 58%;background:linear-gradient(145deg,rgba(219,235,255,.88),rgba(255,255,255,.12));pointer-events:none;z-index:0}
.vd-landing .vd-consult-form-card.vd-consult-final-ui>*{position:relative;z-index:1}.vd-landing .vd-consult-form-head{margin-bottom:.95rem!important;padding-right:150px!important}
.vd-landing .vd-consult-badge{height:30px!important;padding:.28rem .72rem!important;border-radius:999px!important;background:rgba(37,99,235,.07)!important;border:1px solid rgba(37,99,235,.16)!important;color:#0957d9!important;box-shadow:0 8px 18px rgba(37,99,235,.08)!important}
.vd-landing .vd-consult-badge-icon{display:inline-flex;margin-right:.35rem;font-size:.85rem;transform:rotate(-18deg)}
.vd-landing .vd-consult-title{margin:.55rem 0 .32rem!important;font-size:clamp(1.8rem,2.6vw,2.65rem)!important;line-height:.98!important;font-weight:950!important;letter-spacing:-.045em!important;white-space:nowrap!important;color:#071b3a!important}.vd-landing .vd-consult-title-dark{color:#071b3a!important;margin-right:.22em!important}.vd-landing .vd-consult-title-red{color:#ef1426!important}
.vd-landing .vd-consult-desc{display:block!important;width:100%!important;max-width:100%!important;margin:.1rem 0 0!important;color:#344b6f!important;font-size:.88rem!important;line-height:1.45!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.vd-landing .vd-consult-illustration{position:absolute!important;top:16px!important;right:18px!important;width:136px!important;height:92px!important;pointer-events:none!important;z-index:2!important}.vd-landing .vd-illu-paper{position:absolute;left:32px;top:24px;width:54px;height:58px;border-radius:14px;background:linear-gradient(180deg,#fff,#eaf3ff);box-shadow:0 10px 24px rgba(13,86,201,.18)}.vd-landing .vd-illu-paper:before{content:"";position:absolute;left:13px;top:16px;width:28px;height:4px;border-radius:9px;background:#3b82f6;box-shadow:0 12px 0 #9cc4ff,0 24px 0 #bfd8ff}.vd-landing .vd-illu-chat{position:absolute;left:52px;top:0;width:46px;height:36px;border-radius:14px 14px 14px 4px;background:linear-gradient(145deg,#2f7dff,#065bd8);color:white;font-weight:900;text-align:center;line-height:27px;letter-spacing:2px;box-shadow:0 12px 22px rgba(47,125,255,.26)}.vd-landing .vd-illu-user{position:absolute;left:14px;top:49px;width:36px;height:36px;border-radius:50%;background:linear-gradient(180deg,#fff,#eaf3ff);box-shadow:0 8px 18px rgba(13,86,201,.16)}.vd-landing .vd-illu-user:before{content:"";position:absolute;left:13px;top:8px;width:10px;height:10px;border-radius:50%;background:#126aff;box-shadow:0 13px 0 5px #126aff}.vd-landing .vd-illu-mail{position:absolute;right:0;top:38px;width:52px;height:36px;border-radius:8px;background:linear-gradient(145deg,#2f7dff,#075bd8);box-shadow:0 12px 24px rgba(47,125,255,.22);transform:rotate(-11deg)}.vd-landing .vd-illu-mail:before{content:"";position:absolute;inset:0;background:linear-gradient(140deg,transparent 43%,rgba(255,255,255,.55) 44%,transparent 46%),linear-gradient(40deg,transparent 43%,rgba(255,255,255,.45) 44%,transparent 47%);border-radius:inherit}
.vd-landing .vd-consult-form{gap:.72rem!important}.vd-landing .vd-consult-row{gap:.75rem!important}.vd-landing .vd-consult-form label{font-size:.84rem!important;gap:.28rem!important;color:#061b3a!important;font-weight:850!important}.vd-landing .vd-consult-form input,.vd-landing .vd-consult-form select,.vd-landing .vd-consult-form textarea{min-height:42px!important;border-radius:12px!important;padding:.62rem .74rem!important;font-size:.88rem!important;background:rgba(255,255,255,.96)!important;border:1px solid rgba(111,145,191,.24)!important;box-shadow:0 8px 18px rgba(15,79,191,.045)!important}.vd-landing .vd-consult-form textarea{min-height:94px!important}.vd-landing .vd-consult-file input{min-height:42px!important;padding:.52rem .64rem!important}.vd-landing .vd-consult-submit{min-height:46px!important;border-radius:12px!important;background:linear-gradient(135deg,#0b63f6,#0052d9)!important;box-shadow:0 13px 25px rgba(0,82,217,.24)!important;text-transform:uppercase!important}
.vd-landing .vd-video-panel{background:linear-gradient(180deg,#fff,#f8fbff)!important;border:1px solid rgba(59,130,246,.13)!important;box-shadow:0 18px 38px rgba(15,79,191,.10)!important;border-radius:18px!important;padding:1rem!important}.vd-landing .vd-video-panel-title{color:#071b3a!important;font-size:1rem!important;display:flex;align-items:center;gap:.45rem}.vd-landing .vd-video-panel-title:before{content:"▻";display:inline-grid;place-items:center;width:24px;height:24px;border:1px solid rgba(37,99,235,.28);border-radius:7px;color:#075bd8;background:#fff}.vd-landing .vd-video-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:.8rem!important}.vd-landing .vd-video-card{border-radius:12px!important;border:1px solid rgba(15,23,42,.08)!important;background:#fff!important;box-shadow:0 10px 22px rgba(15,79,191,.10)!important}
@media(max-width:1200px){.vd-landing .vd-values-layout.has-videos{grid-template-columns:minmax(460px,1.12fr) minmax(280px,.88fr)!important}.vd-landing .vd-consult-form-head{padding-right:128px!important}.vd-landing .vd-consult-illustration{transform:scale(.86);transform-origin:top right;right:14px}}
@media(max-width:900px){.vd-landing .vd-values-layout.has-videos{grid-template-columns:1fr!important}.vd-landing .vd-consult-form-head{padding-right:135px!important}}
@media(max-width:640px){.vd-landing .vd-consult-title{white-space:normal!important;font-size:1.75rem!important}.vd-landing .vd-consult-desc{white-space:normal!important;overflow:visible!important}.vd-landing .vd-consult-form-head{padding-right:0!important}.vd-landing .vd-consult-illustration{position:relative!important;top:auto!important;right:auto!important;margin:.35rem 0 .1rem auto!important;transform:scale(.82);height:78px!important}.vd-landing .vd-video-grid{grid-template-columns:1fr!important}.vd-landing .vd-consult-row{grid-template-columns:1fr!important}}
