@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --vd-bg: #000000;
  --vd-bg-alt: #0a0a0a;
  --vd-bg-card: #111111;
  --vd-bg-card-hover: #1a1a1a;
  --vd-accent: #ff6900;
  --vd-accent-hover: #e65e00;
  --vd-accent-light: #ff8533;
  --vd-text: #ffffff;
  --vd-text-muted: #cccccc;
  --vd-text-dim: #888888;
  --vd-border: #333333;
  --vd-border-light: #222222;
  --vd-success: #22c55e;
  --vd-error: #ef4444;
  --vd-font-heading: 'Syne', 'Arial', sans-serif;
  --vd-font-body: 'Outfit', 'Arial', sans-serif;
  --vd-radius: 10px;
  --vd-radius-sm: 6px;
  --vd-radius-lg: 16px;
  --vd-radius-pill: 50px;
  --vd-transition: 0.3s ease;
  --vd-container: 1200px;
  --vd-header-h: 70px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--vd-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vd-text);
  background: var(--vd-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--vd-accent); text-decoration: none; transition: color var(--vd-transition); }
a:hover { color: var(--vd-accent-light); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.vd-container { max-width: var(--vd-container); margin: 0 auto; padding: 0 20px; }
.vd-text-center { text-align: center; }

/* ── Section Styles ── */
.vd-section { padding: 80px 0; }
.vd-section--alt { background: var(--vd-bg-alt); }
.vd-section-badge {
  display: inline-block;
  font-family: var(--vd-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vd-accent);
  background: rgba(255,105,0,0.1);
  border: 1px solid rgba(255,105,0,0.25);
  padding: 6px 18px;
  border-radius: var(--vd-radius-pill);
  margin-bottom: 14px;
}
.vd-section-title {
  font-family: var(--vd-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vd-text);
  margin-bottom: 14px;
}
.vd-section-subtitle {
  font-size: 1.05rem;
  color: var(--vd-text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Buttons ── */
.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--vd-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 30px;
  border: none;
  border-radius: var(--vd-radius);
  cursor: pointer;
  transition: all var(--vd-transition);
  text-decoration: none;
}
.vd-btn--primary {
  background: var(--vd-accent);
  color: #fff;
}
.vd-btn--primary:hover {
  background: var(--vd-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,105,0,0.3);
  color: #fff;
}
.vd-btn--outline {
  background: transparent;
  color: var(--vd-accent);
  border: 2px solid var(--vd-accent);
}
.vd-btn--outline:hover {
  background: var(--vd-accent);
  color: #fff;
  transform: translateY(-2px);
}
.vd-btn--block { display: flex; width: 100%; }
.vd-btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ── Header / Nav ── */
.vd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vd-border-light);
  transition: all var(--vd-transition);
}
.vd-header__inner {
  max-width: var(--vd-container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vd-logo {
  font-family: var(--vd-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.vd-logo span { color: var(--vd-accent); }
.vd-nav { display: flex; align-items: center; gap: 4px; }
.vd-nav__link {
  font-family: var(--vd-font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vd-text-muted);
  padding: 8px 14px;
  border-radius: var(--vd-radius-sm);
  transition: all var(--vd-transition);
  text-decoration: none;
}
.vd-nav__link:hover, .vd-nav__link--active { color: #fff; background: rgba(255,105,0,0.1); }
.vd-nav__cta { margin-left: 12px; }
.vd-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.vd-nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--vd-transition);
}

/* ── Hero ── */
.vd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.vd-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,105,0,0.15) 0, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(255,105,0,0.08) 0, transparent 50%);
}
.vd-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--vd-container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.vd-hero__badge {
  display: inline-block;
  font-family: var(--vd-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vd-accent);
  background: rgba(255,105,0,0.08);
  border: 1px solid rgba(255,105,0,0.2);
  padding: 8px 20px;
  border-radius: var(--vd-radius-pill);
  margin-bottom: 24px;
}
.vd-hero__title {
  font-family: var(--vd-font-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.vd-hero__title span { color: var(--vd-accent); }
.vd-hero__subtitle {
  font-size: 1.15rem;
  color: var(--vd-text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.vd-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.vd-hero__stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.vd-hero__stat { text-align: center; }
.vd-hero__stat-num {
  font-family: var(--vd-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vd-accent);
}
.vd-hero__stat-label { font-size: 0.82rem; color: var(--vd-text-muted); margin-top: 4px; }

/* ── Channels Bar ── */
.vd-channels-bar {
  background: var(--vd-bg-alt);
  border-top: 1px solid var(--vd-border-light);
  border-bottom: 1px solid var(--vd-border-light);
  overflow: hidden;
  padding: 16px 0;
}
.vd-channels-bar__inner {
  display: flex;
  gap: 40px;
  animation: vdScroll 45s linear infinite;
  width: max-content;
}
.vd-channels-bar__item {
  font-family: var(--vd-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-text-dim);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}
@keyframes vdScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Feature Cards ── */
.vd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.vd-feature-card {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 36px 28px;
  transition: all var(--vd-transition);
  position: relative;
  overflow: hidden;
}
.vd-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vd-accent);
  opacity: 0;
  transition: opacity var(--vd-transition);
}
.vd-feature-card:hover {
  background: var(--vd-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,105,0,0.15);
  border-color: rgba(255,105,0,0.3);
}
.vd-feature-card:hover::before { opacity: 1; }
.vd-feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,105,0,0.1);
  border: 1px solid rgba(255,105,0,0.2);
  border-radius: var(--vd-radius);
  margin-bottom: 20px;
}
.vd-feature-card__title {
  font-family: var(--vd-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.vd-feature-card__text { font-size: 0.92rem; color: var(--vd-text-muted); line-height: 1.65; }

/* ── Pricing Grid ── */
.vd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.vd-pricing-card {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--vd-transition);
  position: relative;
}
.vd-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,105,0,0.15);
  border-color: rgba(255,105,0,0.4);
}
.vd-pricing-card--featured {
  border-color: var(--vd-accent);
  background: linear-gradient(180deg, rgba(255,105,0,0.08) 0, var(--vd-bg-card) 100%);
  box-shadow: 0 0 20px rgba(255,105,0,0.15);
}
.vd-pricing-card__ribbon {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--vd-accent);
  color: #fff;
  font-family: var(--vd-font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 20px;
  border-radius: 0 0 var(--vd-radius-sm) var(--vd-radius-sm);
}
.vd-pricing-card__name {
  font-family: var(--vd-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vd-accent);
  margin-bottom: 4px;
}
.vd-pricing-card__duration { font-size: 0.85rem; color: var(--vd-text-muted); margin-bottom: 20px; }
.vd-pricing-card__price {
  font-family: var(--vd-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.vd-pricing-card__price .currency { font-size: 1.4rem; vertical-align: top; color: var(--vd-text-muted); }
.vd-pricing-card__per { font-size: 0.82rem; color: var(--vd-text-muted); margin-bottom: 24px; }
.vd-pricing-card__features { text-align: left; margin-bottom: 24px; }
.vd-pricing-card__feature {
  font-size: 0.88rem;
  color: var(--vd-text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,105,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vd-pricing-card__feature:last-child { border-bottom: none; }
.vd-pricing-card__feature .check { color: var(--vd-accent); font-weight: 700; flex-shrink: 0; }

/* ── Promo / Content Cards ── */
.vd-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.vd-promo-card {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  transition: all var(--vd-transition);
}
.vd-promo-card:hover {
  border-color: rgba(255,105,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,105,0,0.12);
}
.vd-promo-card__img { width: 100%; height: 220px; object-fit: cover; }
.vd-promo-card__body { padding: 28px; }
.vd-promo-card__title {
  font-family: var(--vd-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.vd-promo-card__text { font-size: 0.95rem; color: var(--vd-text-muted); line-height: 1.7; }

/* ── Testimonials ── */
.vd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.vd-testimonial {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 32px 24px;
}
.vd-testimonial__stars { color: var(--vd-accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.vd-testimonial__text { font-size: 0.92rem; color: var(--vd-text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.vd-testimonial__author { font-family: var(--vd-font-heading); font-size: 0.9rem; font-weight: 600; color: #fff; }
.vd-testimonial__role { font-size: 0.8rem; color: var(--vd-text-dim); }

/* ── FAQ ── */
.vd-faq-list { max-width: 800px; margin: 48px auto 0; }
.vd-faq-item {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.vd-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--vd-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--vd-transition);
}
.vd-faq-item__q:hover { background: rgba(255,105,0,0.06); }
.vd-faq-item__icon { font-size: 1.2rem; color: var(--vd-accent); transition: transform var(--vd-transition); flex-shrink: 0; margin-left: 16px; }
.vd-faq-item.active .vd-faq-item__icon { transform: rotate(45deg); }
.vd-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.vd-faq-item.active .vd-faq-item__a { max-height: 500px; }
.vd-faq-item__a-inner { padding: 0 24px 20px; font-size: 0.92rem; color: var(--vd-text-muted); line-height: 1.7; }

/* ── Trial / CTA Section ── */
.vd-trial {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,105,0,0.12), var(--vd-bg) 60%, rgba(255,105,0,0.06));
}
.vd-trial__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.vd-trial__title {
  font-family: var(--vd-font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.vd-trial__text { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }

/* ── Lead Form ── */
.vd-lead-form { max-width: 560px; margin: 0 auto; }
.vd-lead-form__row { display: flex; gap: 12px; margin-bottom: 12px; }
.vd-lead-form__input, .vd-form-input, .vd-form-select, .vd-form-textarea {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--vd-font-body);
  font-size: 0.95rem;
  color: var(--vd-text);
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  outline: none;
  transition: border-color var(--vd-transition);
  width: 100%;
}
.vd-lead-form__input::placeholder, .vd-form-input::placeholder { color: var(--vd-text-dim); }
.vd-lead-form__input:focus, .vd-form-input:focus, .vd-form-select:focus, .vd-form-textarea:focus {
  border-color: var(--vd-accent);
  box-shadow: 0 0 0 3px rgba(255,105,0,0.12);
}
.vd-form-textarea { resize: vertical; min-height: 120px; }
.vd-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* ── Form Components ── */
.vd-form-group { margin-bottom: 18px; }
.vd-form-label {
  display: block;
  font-family: var(--vd-font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vd-text);
  margin-bottom: 6px;
}
.vd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vd-form-grid--full { grid-column: 1 / -1; }
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--vd-radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message--success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--vd-success); }
.form-message--error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--vd-error); }

/* ── Page Hero ── */
.vd-page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, rgba(255,105,0,0.08) 0, var(--vd-bg) 100%);
  text-align: center;
}
.vd-page-hero__title {
  font-family: var(--vd-font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.vd-page-hero__subtitle { font-size: 1.05rem; color: var(--vd-text-muted); max-width: 560px; margin: 0 auto; }

/* ── Legal Content ── */
.vd-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
.vd-legal h2 { font-family: var(--vd-font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; margin: 40px 0 14px; }
.vd-legal h3 { font-family: var(--vd-font-heading); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 28px 0 10px; }
.vd-legal p { color: var(--vd-text-muted); margin-bottom: 16px; line-height: 1.75; }
.vd-legal ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.vd-legal ul li { color: var(--vd-text-muted); margin-bottom: 8px; line-height: 1.65; }
.vd-legal a { color: var(--vd-accent); }
.vd-legal a:hover { text-decoration: underline; }
.vd-legal table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.vd-legal th { font-family: var(--vd-font-heading); font-weight: 600; color: var(--vd-accent); text-align: left; padding: 12px; border-bottom: 2px solid var(--vd-border); }
.vd-legal td { padding: 12px; color: var(--vd-text-muted); border-bottom: 1px solid var(--vd-border-light); }

/* ── Channels Grid ── */
.vd-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.vd-channel-cat {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 28px;
}
.vd-channel-cat__title {
  font-family: var(--vd-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vd-accent);
  margin-bottom: 8px;
}
.vd-channel-cat__count { font-size: 0.85rem; color: var(--vd-text-dim); margin-bottom: 12px; }
.vd-channel-cat__list { font-size: 0.88rem; color: var(--vd-text-muted); line-height: 1.8; }

/* ── Reseller ── */
.vd-reseller-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.vd-reseller-card {
  background: var(--vd-bg-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 32px 24px;
}
.vd-reseller-card__title { font-family: var(--vd-font-heading); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.vd-reseller-card__text { font-size: 0.9rem; color: var(--vd-text-muted); line-height: 1.65; }

/* ── Setup Guide ── */
.vd-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 96px;
}
.vd-guide h2 { font-family: var(--vd-font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 40px 0 14px; }
.vd-guide h3 { font-family: var(--vd-font-heading); font-size: 1.15rem; font-weight: 600; color: #fff; margin: 28px 0 10px; }
.vd-guide p { color: var(--vd-text-muted); margin-bottom: 16px; line-height: 1.75; }
.vd-guide ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.vd-guide ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.vd-guide li { color: var(--vd-text-muted); margin-bottom: 8px; line-height: 1.65; }
.vd-guide img { border-radius: var(--vd-radius); margin: 20px 0; }

/* ── Footer ── */
.vd-footer {
  background: var(--vd-bg-alt);
  border-top: 1px solid var(--vd-border);
  padding: 64px 0 0;
}
.vd-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.vd-footer__brand {
  font-family: var(--vd-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.vd-footer__brand span { color: var(--vd-accent); }
.vd-footer__text { font-size: 0.88rem; color: var(--vd-text-muted); line-height: 1.65; margin-bottom: 8px; }
.vd-footer__heading {
  font-family: var(--vd-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.vd-footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--vd-text-muted);
  padding: 5px 0;
  transition: color var(--vd-transition);
  text-decoration: none;
}
.vd-footer__link:hover { color: var(--vd-accent); }
.vd-footer__bottom {
  border-top: 1px solid var(--vd-border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--vd-text-dim);
}
.vd-footer__address { font-size: 0.85rem; color: var(--vd-text-dim); margin-top: 8px; line-height: 1.6; }

/* ── Trust Signals ── */
.vd-trust { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--vd-text-dim); margin-top: 12px; }
.vd-trust svg { width: 14px; height: 14px; fill: var(--vd-accent); flex-shrink: 0; }

/* ── Image Gallery ── */
.vd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.vd-gallery img {
  border-radius: var(--vd-radius);
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform var(--vd-transition);
}
.vd-gallery img:hover { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vd-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vd-promo-grid { grid-template-columns: 1fr; }
  .vd-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .vd-nav-toggle { display: flex; }
  .vd-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--vd-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 4px;
    transition: right var(--vd-transition);
    border-left: 1px solid var(--vd-border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .vd-nav--open { right: 0; }
  .vd-nav__link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .vd-nav__cta { margin-left: 0; margin-top: 12px; width: 100%; }
  .vd-hero { min-height: auto; padding: 120px 0 64px; }
  .vd-hero__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .vd-hero__stats { gap: 24px; }
  .vd-section { padding: 64px 0; }
  .vd-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .vd-features-grid { grid-template-columns: 1fr; }
  .vd-lead-form__row { flex-direction: column; }
  .vd-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .vd-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vd-hero__actions { flex-direction: column; align-items: center; }
  .vd-hero__stats { flex-direction: column; gap: 16px; }
}
