/* === Webfonts: self-hosted === */
@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree/Figtree[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('fonts/Figtree/Figtree-Italic[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'WorkSans';
  src: url('fonts/WorkSans-ExtraLight/WorkSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* === Reset & Base === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Figtree', 'Inter', system-ui, sans-serif; }
.vd { width: 100%; background: #fff; color: #0a0a0a; font-size: 15px; line-height: 1.6; }

/* === Header === */
.vd-header { background: #0a0a0a; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.vd-logo { color: #fff; font-family: 'WorkSans', sans-serif; font-size: 18px; font-weight: 200; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.vd-logo span { color: #a3e635; }
.vd-nav { display: flex; gap: 24px; align-items: center; }
.vd-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; position: relative; }
.vd-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 1px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.vd-nav a:hover, .vd-nav a.active { color: #fff; }
.vd-nav a:hover::after, .vd-nav a.active::after { transform: scaleX(1); }
.vd-btn-header { background: #a3e635; color: #0a0a0a; border: none; padding: 8px 18px; border-radius: 24px; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; overflow: hidden; position: relative; }
.vd-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; }
.vd-bar { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.vd-header.menu-open .vd-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vd-header.menu-open .vd-bar:nth-child(2) { opacity: 0; }
.vd-header.menu-open .vd-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.vd-hero { background: #0a0a0a; padding: 80px 28px 90px; text-align: center; position: relative; overflow: hidden; }
.vd-hero::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(163,230,53,0.08) 0%, transparent 70%); pointer-events: none; }
.vd-badge { display: inline-block; background: rgba(163,230,53,0.12); color: #a3e635; border: 1px solid rgba(163,230,53,0.3); border-radius: 24px; padding: 5px 14px; font-size: 12px; margin-bottom: 24px; }
.vd-hero h1 { color: #fff; font-size: 38px; font-weight: 500; line-height: 1.15; max-width: 640px; margin: 0 auto 20px; }
.vd-hero h1 em { color: #a3e635; font-style: normal; }
.vd-hero p { color: rgba(255,255,255,0.55); font-size: 16px; max-width: 540px; margin: 0 auto 36px; }
.vd-hero p a { color: rgba(163,230,53,0.8); }
.vd-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Buttons === */
.vd-btn-primary { background: #a3e635; color: #0a0a0a; border: none; padding: 13px 28px; border-radius: 32px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; overflow: hidden; position: relative; }
.vd-btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 13px 28px; border-radius: 32px; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; overflow: hidden; position: relative; }
.vd-btn-dark { background: #0a0a0a; color: #fff; border: none; padding: 14px 32px; border-radius: 32px; font-size: 14px; font-weight: 500; cursor: pointer; margin: 4px; text-decoration: none; display: inline-block; overflow: hidden; position: relative; }
.vd-btn-ghost { background: transparent; color: #0a0a0a; border: 2px solid rgba(0,0,0,0.25); padding: 14px 32px; border-radius: 32px; font-size: 14px; cursor: pointer; margin: 4px; text-decoration: none; display: inline-block; overflow: hidden; position: relative; }

/* === Button text-roll hover === */
.vd-btn-spacer { display: block; visibility: hidden; pointer-events: none; }
.vd-btn-txt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.vd-btn-txt2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
:is(.vd-btn-primary, .vd-btn-outline, .vd-btn-dark, .vd-btn-ghost, .vd-btn-header):hover .vd-btn-txt {
  transform: translateY(-100%);
}
:is(.vd-btn-primary, .vd-btn-outline, .vd-btn-dark, .vd-btn-ghost, .vd-btn-header):hover .vd-btn-txt2 {
  transform: translateY(0);
}

/* === Stats Ticker (index) === */
.vd-stats { background: #111; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; padding: 20px 28px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.vd-stat { text-align: center; }
.vd-stat-num { font-size: 24px; font-weight: 500; color: #a3e635; }
.vd-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* === Review Bar === */
.vd-review { display: flex; align-items: center; justify-content: center; gap: 16px; background: #fff; padding: 18px 28px; border-top: 0.5px solid #ebebeb; border-bottom: 0.5px solid #ebebeb; flex-wrap: wrap; }
.vd-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.vd-review-text { font-size: 13px; color: #555; }
.vd-review-clients { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.vd-client-dot { width: 8px; height: 8px; background: #e0e0e0; border-radius: 50%; }

/* === Sections === */
.vd-section { padding: 64px 28px; }
.vd-section-alt { background: #f7f7f5; padding: 64px 28px; }
.vd-section-label { font-size: 11px; letter-spacing: 0.1em; color: #888; text-transform: uppercase; margin-bottom: 8px; }
.vd-section-title { font-size: 26px; font-weight: 500; margin-bottom: 32px; color: #0a0a0a; }
.vd-inner { max-width: 900px; margin: 0 auto; }

/* === Services Slider (index) === */
.vd-section-svc-slider { padding-left: 0; padding-right: 0; }
.vd-section-svc-slider > div:first-child { padding: 0 28px; }
.vd-svc-slider {
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.vd-svc-track {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 4px 0 8px;
}
.vd-service {
  background: #f7f7f5;
  border: 0.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: left;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  width: 210px;
  flex-shrink: 0;
  margin-right: 12px;
}
.vd-service:hover { background: #0a0a0a; border-color: #0a0a0a; transform: translateY(-3px); }
.vd-service:hover .vd-svc-title { color: #fff; }
.vd-service:hover .vd-svc-desc { color: rgba(255,255,255,0.5); }
.vd-service:hover .vd-svc-icon { background: rgba(163,230,53,0.15); color: #a3e635; }
.vd-svc-icon { width: 36px; height: 36px; background: #ebebeb; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 16px; transition: all 0.25s; }
.vd-svc-img { margin: -22px -18px 16px -18px; height: 140px; overflow: hidden; border-radius: 14px 14px 0 0; background: #fff; }
.vd-svc-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.vd-svc-title { font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #0a0a0a; transition: color 0.25s; }
.vd-svc-desc { font-size: 12px; color: #888; line-height: 1.5; transition: color 0.25s; }

/* === Projects (index) === */
.vd-projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.vd-project { background: #fff; border: 0.5px solid #e8e8e8; border-radius: 14px; overflow: hidden; transition: all 0.3s; text-decoration: none; display: block; color: inherit; }
.vd-project:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.vd-project-img { height: 180px; background: #fff; overflow: hidden; }
.vd-project-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.vd-project-body { padding: 16px; }
.vd-project-tag { font-size: 10px; background: #f0f0f0; color: #666; padding: 3px 8px; border-radius: 10px; margin-bottom: 8px; display: inline-block; }
.vd-project-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.vd-project-desc { font-size: 11px; color: #888; }

/* === Process Steps (index) === */
.vd-process { display: flex; gap: 0; flex-wrap: wrap; }

/* === Process & Service Steps (shared) === */
.vd-steps { display: flex; flex-wrap: wrap; }
.vd-step { flex: 1 1 120px; padding: 24px 16px; border-left: 1px solid #ebebeb; background: #fff; }
.vd-step:first-child { border-left: none; }
.vd-step-num { font-size: 11px; color: #a3e635; font-weight: 500; margin-bottom: 8px; }
.vd-step-title { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.vd-step-desc { font-size: 11px; color: #888; line-height: 1.5; }

/* === Trust Section === */
.vd-trust { background: #0a0a0a; padding: 48px 0; text-align: center; overflow: hidden; }
.vd-trust-title { color: #fff; font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.vd-trust-sub { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 32px; }
.vd-logos-wrap { width: 100%; padding: 8px 0; display: flex; flex-direction: column; gap: 20px; }
.vd-logos-track {
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  width: max-content;
}
.vd-logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  transition: background 0.3s, border-color 0.3s;
}
.vd-logo-circle:hover { background: #2a2a2a; border-color: #3a3a3a; }
.vd-client-logo { height: 46px; width: auto; max-width: 72px; object-fit: contain; filter: grayscale(1) brightness(2.5) opacity(0.7); transition: filter 0.3s; }
.vd-logo-circle:hover .vd-client-logo { filter: grayscale(0) brightness(1) opacity(1); }

/* === CTA Section === */
.vd-cta { background: #a3e635; padding: 60px 28px; text-align: center; }
.vd-cta h2 { font-size: 28px; font-weight: 500; color: #0a0a0a; margin-bottom: 10px; }
.vd-cta p { font-size: 15px; color: rgba(0,0,0,0.6); margin-bottom: 28px; }

/* === Footer === */
.vd-footer { background: #fff; border-top: 0.5px solid #ebebeb; padding: 40px 28px 24px; }
.vd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.vd-footer-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.vd-footer-social a { display: inline-flex; position: static; }
.vd-footer-social a::after { display: none !important; }
.vd-footer-social img { width: 20px; height: 20px; filter: brightness(0) opacity(0.45); transition: filter 0.2s; }
.vd-footer-social a:hover img { filter: brightness(0) opacity(0.9); }
.vd-footer-brand { font-size: 15px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 10px; }
.vd-footer-tagline { font-size: 12px; color: #888; max-width: 180px; line-height: 1.6; }
.vd-footer-col h5 { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; margin-bottom: 12px; }
.vd-footer-col a,
.footer-column a { display: block; width: fit-content; font-size: 13px; color: #555; text-decoration: none; margin-bottom: 6px; position: relative; }
.vd-footer-col a:not(.vd-wa):not([class*="vd-btn"])::after,
.footer-column a:not([class*="vd-btn"])::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px; background: #0a0a0a; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.vd-footer-col a:hover,
.footer-column a:hover { color: #0a0a0a; }
.vd-footer-col a:not(.vd-wa):not([class*="vd-btn"]):hover::after,
.footer-column a:not([class*="vd-btn"]):hover::after { transform: scaleX(1); }
.vd-footer-bottom { border-top: 0.5px solid #ebebeb; padding-top: 16px; font-size: 11px; color: #aaa; display: flex; justify-content: space-between; align-items: center; }
.vd-wa { background: #25d366; color: #fff; border: none; padding: 8px 16px; border-radius: 24px; font-size: 12px; cursor: pointer; text-decoration: none; display: inline-block; margin-top: 8px; }

/* === Contact Form (index) === */
.vd-form { max-width: 560px; margin: 0 auto; }
.vd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.vd-input { width: 100%; padding: 12px 14px; background: #f7f7f5; border: 0.5px solid #e0e0e0; border-radius: 10px; font-size: 14px; color: #0a0a0a; outline: none; font-family: inherit; }
.vd-textarea { width: 100%; padding: 12px 14px; background: #f7f7f5; border: 0.5px solid #e0e0e0; border-radius: 10px; font-size: 14px; color: #0a0a0a; outline: none; resize: vertical; min-height: 90px; margin-bottom: 10px; display: block; font-family: inherit; }
.vd-file-label { display: block; background: #f7f7f5; border: 0.5px dashed #ccc; border-radius: 10px; padding: 18px; text-align: center; font-size: 13px; color: #aaa; margin-bottom: 12px; cursor: pointer; transition: border-color 0.2s; }
.vd-file-label:hover { border-color: #a3e635; color: #888; }
.vd-file-input { display: none; }
.vd-file-name { font-size: 12px; color: #666; margin-top: 4px; display: block; }

/* === Prose Content (service pages) === */
.vd-prose h2 { font-size: 22px; font-weight: 500; margin: 40px 0 14px; color: #0a0a0a; }
.vd-prose h3 { font-size: 16px; font-weight: 500; margin: 24px 0 8px; color: #0a0a0a; }
.vd-prose p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.vd-prose ul, .vd-prose ol { margin: 0 0 16px 20px; }
.vd-prose li { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 6px; }
.vd-prose a { color: #6db800; text-decoration: none; position: relative; }
.vd-prose a:not([class*="vd-btn"])::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px; background: #6db800; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.vd-prose a:not([class*="vd-btn"]):hover::after { transform: scaleX(1); }

/* === Legal Prose (datenschutz, impressum) === */
.vd-prose-legal h1 { font-size: 32px; font-weight: 500; margin-bottom: 32px; color: #0a0a0a; }
.vd-prose-legal h2 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin: 32px 0 8px; }
.vd-prose-legal p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 12px; }
.vd-prose-legal ul { margin: 8px 0 16px 20px; }
.vd-prose-legal li { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 6px; }
.vd-prose-legal a { color: #6db800; text-decoration: none; position: relative; }
.vd-prose-legal a:not([class*="vd-btn"])::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px; background: #6db800; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.vd-prose-legal a:not([class*="vd-btn"]):hover::after { transform: scaleX(1); }
.vd-prose-legal a:hover { text-decoration: underline; }
.vd-prose-legal code { background: #f7f7f5; border-radius: 4px; padding: 2px 6px; font-size: 13px; color: #0a0a0a; }

/* === Bullet List === */
.vd-bullets { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; }
.vd-bullets li { font-size: 13px; color: #555; padding: 10px 14px; background: #f7f7f5; border: 0.5px solid #e8e8e8; border-radius: 10px; }
.vd-bullets li strong { color: #0a0a0a; display: block; margin-bottom: 2px; }

/* === Cards === */
.vd-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 20px 0; }
.vd-card { background: #f7f7f5; border: 0.5px solid #e8e8e8; border-radius: 14px; padding: 22px; }
.vd-card-icon { width: 36px; height: 36px; background: #ebebeb; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 16px; }
.vd-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #0a0a0a; }
.vd-card p, .vd-card li { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 4px; }
.vd-card ul { list-style: none; padding: 0; margin: 0; }
.vd-card li::before { content: '· '; color: #a3e635; }

/* === FAQ === */
.vd-faq details { border-bottom: 0.5px solid #ebebeb; }
.vd-faq summary { font-size: 14px; font-weight: 500; cursor: pointer; list-style: none; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; color: #0a0a0a; }
.vd-faq summary::-webkit-details-marker { display: none; }
.vd-faq summary::after { content: '+'; color: #a3e635; font-size: 20px; font-weight: 300; line-height: 1; }
.vd-faq details[open] summary::after { content: '−'; }
.vd-faq details:not([open]) .answer { display: none; }
.vd-faq .answer { font-size: 14px; color: #666; padding-bottom: 16px; line-height: 1.7; animation: faqOpen 0.2s ease; }
.vd-faq .answer a { color: #6db800; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* === Case Studies (digitale-visitenkarte) === */
.vd-cases { display: flex; flex-direction: column; gap: 48px; margin: 24px 0; }
.vd-case { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; background: #f7f7f5; border: 0.5px solid #e8e8e8; border-radius: 20px; overflow: hidden; }
.vd-case.alt { direction: rtl; }
.vd-case.alt > * { direction: ltr; }
.vd-case-img { background: #1a1a1a; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.vd-case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-case-body { padding: 32px; }
.vd-case-body h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.vd-case-body p { font-size: 14px; color: #666; margin-bottom: 14px; line-height: 1.6; }
.vd-case-body ul { list-style: none; padding: 0; margin: 0 0 16px; }
.vd-case-body li { font-size: 13px; color: #555; padding: 4px 0; }
.vd-case-body li::before { content: '✓ '; color: #a3e635; }

/* === Blog Post Grid === */
.vd-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.vd-post-card { background: #fff; border: 0.5px solid #e8e8e8; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: all 0.25s; }
.vd-post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.vd-post-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #1a1a1a; display: block; }
.vd-post-body { padding: 18px; }
.vd-post-meta { font-size: 11px; color: #aaa; margin-bottom: 6px; }
.vd-post-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: #0a0a0a; line-height: 1.4; }
.vd-post-desc { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.vd-post-link { font-size: 13px; color: #a3e635; font-weight: 500; }

/* === Danke Page === */
.vd-danke-box { max-width: 520px; margin: 0 auto; text-align: center; }
.vd-danke-check { width: 64px; height: 64px; background: #a3e635; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; }
.vd-danke-title { font-size: 28px; font-weight: 500; color: #0a0a0a; margin-bottom: 14px; }
.vd-danke-text { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 28px; }
.vd-danke-text a { color: #6db800; }
.vd-insta-section { margin-top: 48px; }
.vd-insta-section h2 { font-size: 18px; font-weight: 500; margin-bottom: 16px; }
.vd-insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 420px; margin: 0 auto 20px; list-style: none; padding: 0; }
.vd-insta-grid li { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: #f3f3f3; position: relative; }
.vd-insta-grid a { display: block; width: 100%; height: 100%; }
.vd-insta-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.vd-insta-grid li:hover img { transform: scale(1.03); }
.vd-insta-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.vd-insta-ph svg { width: 28%; height: auto; opacity: .2; }
.vd-insta-more a { font-size: 13px; color: #6db800; text-decoration: none; }

/* === Responsive === */
@media (max-width: 700px) {
  .vd-case { grid-template-columns: 1fr; }
  .vd-case.alt { direction: ltr; }
}
@media (max-width: 640px) {
  .vd-nav { display: none; }
  .vd-btn-header { display: none; }
  .vd-burger { display: flex; }
  .vd-header.menu-open .vd-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    padding: 12px 28px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .vd-header.menu-open .vd-nav a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .vd-footer-grid { grid-template-columns: 1fr 1fr; }
  .vd-footer-col:last-child { grid-column: 1 / -1; }
  .vd-footer-social { flex-wrap: nowrap; }
  .vd-footer-social img { width: 24px; height: 24px; }
  .vd-hero h1 { font-size: 26px; }
  .vd-form-row { grid-template-columns: 1fr; }
}
