/* ============================================
   VORULDRAX DIGITAL - MAIN STYLESHEET
   Prefix: vd-
   ============================================ */


:root {
  --vd-bg: #f5f6f0;
  --vd-bg-alt: #eef0e8;
  --vd-surface: #ffffff;
  --vd-surface-glass: rgba(255,255,255,0.72);
  --vd-text-primary: #1a1f14;
  --vd-text-secondary: #4a5240;
  --vd-text-muted: #7a8570;
  --vd-accent: #2d6a4f;
  --vd-accent-light: #40916c;
  --vd-accent-pale: #d8f3dc;
  --vd-accent2: #1b4332;
  --vd-accent3: #74c69d;
  --vd-warn: #b5451b;
  --vd-border: #dde0d6;
  --vd-nav-h: 80px;
  --vd-nav-h-scroll: 58px;

  --vd-shadow-sm: 0 1px 3px rgba(30,50,20,0.07), 0 1px 2px rgba(30,50,20,0.05);
  --vd-shadow-md: 0 4px 16px rgba(30,50,20,0.10), 0 2px 6px rgba(30,50,20,0.06);
  --vd-shadow-lg: 0 12px 40px rgba(30,50,20,0.13), 0 4px 12px rgba(30,50,20,0.08);
  --vd-shadow-xl: 0 24px 64px rgba(30,50,20,0.16), 0 8px 24px rgba(30,50,20,0.10);

  --vd-r-sm: 6px;
  --vd-r-md: 12px;
  --vd-r-lg: 20px;
  --vd-r-xl: 32px;
  --vd-r-full: 9999px;

  --vd-space-xs: 0.5rem;
  --vd-space-sm: 1rem;
  --vd-space-md: 2rem;
  --vd-space-lg: 4rem;
  --vd-space-xl: 7rem;

  --vd-dot-color: rgba(45,106,79,0.12);
  --vd-dot-size: 20px;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--vd-bg);
  background-image: radial-gradient(circle, var(--vd-dot-color) 1.5px, transparent 1.5px);
  background-size: var(--vd-dot-size) var(--vd-dot-size);
  color: var(--vd-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vd-accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--vd-accent2); }
ul { list-style: none; }


h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: var(--vd-text-primary); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--vd-text-primary); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; line-height: 1.3; color: var(--vd-text-primary); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--vd-text-primary); }
h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vd-text-muted); margin-bottom: 1rem; }
p { color: var(--vd-text-secondary); line-height: 1.75; }


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

/* ============================================
   NAVIGATION
   ============================================ */
.vd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,246,240,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  padding: 0;
}

.vd-nav.vd-nav-scrolled {
  background: rgba(245,246,240,0.97);
  border-bottom-color: var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
}

.vd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: var(--vd-nav-h);
  gap: 2rem;
  transition: height 0.35s ease;
}

.vd-nav.vd-nav-scrolled .vd-nav-inner {
  height: var(--vd-nav-h-scroll);
}

.vd-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.vd-logo-img {
  height: 36px;
  width: auto;
  transition: height 0.35s ease;
}

.vd-nav.vd-nav-scrolled .vd-logo-img {
  height: 28px;
}

.vd-logo-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--vd-text-primary);
  letter-spacing: -0.01em;
}

.vd-logo-text strong {
  font-weight: 800;
  color: var(--vd-accent);
}

.vd-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.vd-tab {
  padding: 0.5rem 1rem;
  border-radius: var(--vd-r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vd-text-secondary);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.vd-tab:hover {
  background: var(--vd-accent-pale);
  color: var(--vd-accent2);
}

.vd-tab-active {
  background: var(--vd-accent);
  color: #fff !important;
  box-shadow: var(--vd-shadow-sm);
  border-color: var(--vd-accent);
}

.vd-tab-active:hover {
  background: var(--vd-accent2);
  color: #fff !important;
}

.vd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.vd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vd-text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.vd-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(245,246,240,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--vd-border);
  padding: 0.5rem 0 max(0.5rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(30,50,20,0.08);
}

.vd-mob-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.4rem 0.5rem;
  color: var(--vd-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  min-width: 44px;
  flex: 1;
}

.vd-mob-tab i { font-size: 1.1rem; }
.vd-mob-tab span { font-size: 0.65rem; font-weight: 600; }

.vd-mob-tab:hover,
.vd-mob-active {
  color: var(--vd-accent) !important;
}

/* ============================================
   SIDEBAR CTA
   ============================================ */
.vd-sidebar-cta {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vd-sidebar-cta.vd-visible {
  opacity: 1;
  pointer-events: all;
}

.vd-sidebar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--vd-accent);
  color: #fff;
  border-radius: var(--vd-r-md);
  padding: 0.9rem 0.65rem;
  box-shadow: var(--vd-shadow-lg);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vd-sidebar-btn:hover {
  background: var(--vd-accent2);
  color: #fff;
  box-shadow: var(--vd-shadow-xl);
  transform: translateX(-3px);
}

.vd-sidebar-btn i { font-size: 1.1rem; }

.vd-sidebar-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ============================================
   BUTTONS
   ============================================ */
.vd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vd-accent);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: var(--vd-r-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: var(--vd-shadow-md);
}

.vd-btn-primary:hover {
  background: var(--vd-accent2);
  color: #fff;
  box-shadow: var(--vd-shadow-lg);
  transform: translateY(-2px);
}

.vd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--vd-accent);
  padding: 0.8rem 1.8rem;
  border-radius: var(--vd-r-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--vd-accent);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.vd-btn-ghost:hover {
  background: var(--vd-accent);
  color: #fff;
  transform: translateY(-2px);
}

.vd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--vd-text-primary);
  padding: 0.75rem 1.6rem;
  border-radius: var(--vd-r-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--vd-border);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.vd-btn-outline:hover {
  border-color: var(--vd-accent);
  color: var(--vd-accent);
  transform: translateY(-2px);
}

.vd-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--vd-accent2);
  padding: 0.85rem 2rem;
  border-radius: var(--vd-r-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}

.vd-btn-white:hover {
  background: var(--vd-accent-pale);
  color: var(--vd-accent2);
  box-shadow: 0 8px 24px rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.vd-btn-full { width: 100%; justify-content: center; }

.vd-btn-thanks {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2.5px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--vd-r-full);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  margin-top: 2rem;
}

.vd-btn-thanks:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.vd-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--vd-space-lg);
}

.vd-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vd-accent);
  background: var(--vd-accent-pale);
  padding: 0.3rem 0.9rem;
  border-radius: var(--vd-r-full);
  margin-bottom: 1rem;
}

.vd-section-header h2 { margin-bottom: 1rem; }
.vd-section-header p { font-size: 1.05rem; color: var(--vd-text-secondary); }

/* ============================================
   HERO SECTION
   ============================================ */
.vd-hero {
  min-height: 100vh;
  padding-top: calc(var(--vd-nav-h) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.vd-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vd-accent-pale);
  color: var(--vd-accent2);
  padding: 0.4rem 1rem;
  border-radius: var(--vd-r-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(45,106,79,0.2);
}

.vd-hero-heading {
  margin-bottom: 1.5rem;
}

.vd-hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  color: var(--vd-text-secondary);
  max-width: 500px;
}

.vd-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.vd-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.vd-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vd-text-secondary);
  background: var(--vd-surface);
  padding: 0.3rem 0.8rem;
  border-radius: var(--vd-r-full);
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
}

.vd-tag i { color: var(--vd-accent); font-size: 0.7rem; }


.vd-hero-images {
  position: relative;
  height: 480px;
}

.vd-hero-img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  border-radius: var(--vd-r-lg);
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: var(--vd-shadow-xl);
  z-index: 1;
}

.vd-hero-img-back img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.vd-hero-img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  border-radius: var(--vd-r-lg);
  overflow: hidden;
  transform: rotate(-2.5deg);
  box-shadow: var(--vd-shadow-xl);
  z-index: 2;
  border: 4px solid var(--vd-surface);
}

.vd-hero-img-front img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.vd-hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--vd-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  animation: vd-bounce 2s infinite;
}

@keyframes vd-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.vd-intro-strip {
  background: var(--vd-accent2);
  padding: 2.5rem 0;
}

.vd-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vd-intro-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vd-intro-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vd-accent3);
  font-size: 1.1rem;
}

.vd-intro-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.vd-intro-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.vd-services {
  padding: var(--vd-space-xl) 0;
}

.vd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vd-service-card {
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  padding: 2rem;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vd-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vd-accent), var(--vd-accent3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vd-service-card:hover {
  box-shadow: var(--vd-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(45,106,79,0.2);
}

.vd-service-card:hover::before { opacity: 1; }

.vd-service-card-accent {
  background: var(--vd-accent2);
  border-color: var(--vd-accent2);
}

.vd-service-card-accent .vd-service-num,
.vd-service-card-accent .vd-service-icon,
.vd-service-card-accent h3,
.vd-service-card-accent p { color: #fff; }

.vd-service-card-accent .vd-service-icon { background: rgba(255,255,255,0.12); }
.vd-service-card-accent .vd-service-link { color: var(--vd-accent3); }
.vd-service-card-accent .vd-service-link:hover { color: #fff; }

.vd-service-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--vd-accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.vd-service-icon {
  width: 48px;
  height: 48px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.vd-service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.vd-service-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.vd-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-accent);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.vd-service-link:hover { gap: 0.7rem; color: var(--vd-accent2); }

/* ============================================
   CAROUSEL SECTION
   ============================================ */
.vd-carousel-section {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
  overflow: hidden;
}

.vd-swiper-wrap {
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vd-swiper {
  overflow: visible;
  padding-bottom: 3rem !important;
}

.vd-slide {
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid var(--vd-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vd-slide:hover {
  box-shadow: var(--vd-shadow-lg);
  transform: translateY(-4px);
}

.vd-slide-img {
  height: 220px;
  overflow: hidden;
}

.vd-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vd-slide:hover .vd-slide-img img { transform: scale(1.04); }

.vd-slide-content {
  padding: 1.75rem;
}

.vd-slide-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--vd-accent);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}

.vd-slide-content h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.vd-slide-content p { font-size: 0.88rem; line-height: 1.7; }

.vd-swiper-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { background: var(--vd-accent) !important; }
.swiper-pagination-bullet-active { background: var(--vd-accent2) !important; }

.vd-swiper-prev,
.vd-swiper-next {
  color: var(--vd-accent) !important;
  background: var(--vd-surface);
  border-radius: var(--vd-r-full);
  box-shadow: var(--vd-shadow-md);
  width: 44px !important;
  height: 44px !important;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.vd-swiper-prev:hover,
.vd-swiper-next:hover {
  background: var(--vd-accent-pale);
  box-shadow: var(--vd-shadow-lg);
}

.vd-swiper-prev::after,
.vd-swiper-next::after { font-size: 14px !important; font-weight: 900; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.vd-process {
  padding: var(--vd-space-xl) 0;
}

.vd-process-steps {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--vd-border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.vd-process-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.vd-step-dot {
  position: absolute;
  left: -2.6rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  background: var(--vd-accent);
  border-radius: var(--vd-r-full);
  border: 3px solid var(--vd-bg);
  box-shadow: 0 0 0 2px var(--vd-accent);
  flex-shrink: 0;
}

.vd-step-body { flex: 1; }
.vd-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vd-accent);
  display: block;
  margin-bottom: 0.4rem;
}
.vd-step-body h4 { margin-bottom: 0.5rem; }
.vd-step-body p { font-size: 0.92rem; }

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.vd-certifications {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
}

.vd-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.vd-cert-card {
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vd-cert-card:hover {
  box-shadow: var(--vd-shadow-md);
  transform: translateY(-3px);
}

.vd-cert-icon {
  width: 52px;
  height: 52px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.vd-cert-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.vd-cert-card p { font-size: 0.78rem; line-height: 1.6; }

/* ============================================
   ABOUT TEASER
   ============================================ */
.vd-about-teaser {
  padding: var(--vd-space-xl) 0;
}

.vd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vd-about-img-wrap {
  position: relative;
  border-radius: var(--vd-r-lg);
  overflow: visible;
}

.vd-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--vd-r-lg);
  box-shadow: var(--vd-shadow-xl);
}

.vd-about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--vd-accent);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--vd-shadow-lg);
}

.vd-about-content .vd-section-label { display: block; margin-bottom: 0.75rem; }
.vd-about-content h2 { margin-bottom: 1.5rem; }
.vd-about-content p { margin-bottom: 1.25rem; }
.vd-about-content .vd-btn-primary { margin-top: 0.5rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.vd-cta-banner {
  padding: var(--vd-space-lg) 0;
}

.vd-cta-inner {
  background: linear-gradient(135deg, var(--vd-accent2) 0%, var(--vd-accent) 60%, var(--vd-accent-light) 100%);
  border-radius: var(--vd-r-xl);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--vd-shadow-xl);
  position: relative;
  overflow: hidden;
}

.vd-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.vd-cta-content { position: relative; z-index: 1; }
.vd-cta-content h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.vd-cta-content p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; max-width: 500px; }

.vd-cta-deco {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  color: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ============================================
   TOOLS PREVIEW
   ============================================ */
.vd-tools-preview {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
}

.vd-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.vd-tool-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--vd-surface);
  border-radius: var(--vd-r-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.vd-tool-item:hover {
  box-shadow: var(--vd-shadow-md);
  transform: translateY(-2px);
  border-color: rgba(45,106,79,0.25);
}

.vd-tool-icon {
  width: 44px;
  height: 44px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vd-tool-info { flex: 1; }
.vd-tool-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.vd-tool-info p { font-size: 0.82rem; margin: 0; }

.vd-tool-arrow {
  color: var(--vd-text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.vd-tool-item:hover .vd-tool-arrow {
  color: var(--vd-accent);
  transform: translateX(3px);
}

.vd-tools-cta { text-align: center; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.vd-page-hero {
  padding-top: calc(var(--vd-nav-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
}

.vd-page-hero-compact {
  padding-bottom: 3rem;
}

.vd-page-hero-content .vd-section-label { display: block; margin-bottom: 1rem; }
.vd-page-hero-content h1 { margin-bottom: 1.25rem; }
.vd-page-hero-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   DNA PAGE
   ============================================ */
.vd-dna-intro,
.vd-approach {
  padding: var(--vd-space-xl) 0;
}

.vd-dna-grid,
.vd-approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vd-dna-img img,
.vd-approach-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--vd-r-lg);
  box-shadow: var(--vd-shadow-xl);
}

.vd-dna-text h2,
.vd-approach-text h2 { margin-bottom: 1.25rem; }
.vd-dna-text p,
.vd-approach-text p { margin-bottom: 1.1rem; }
.vd-approach-text .vd-section-label { display: block; margin-bottom: 0.75rem; }

.vd-values {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
}

.vd-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vd-value-card {
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vd-value-card:hover {
  box-shadow: var(--vd-shadow-md);
  transform: translateY(-3px);
}

.vd-value-icon {
  width: 48px;
  height: 48px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.vd-value-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.vd-value-card p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   INIZIA ORA PAGE
   ============================================ */
.vd-start-intro,
.vd-detailed-process,
.vd-faq {
  padding: var(--vd-space-xl) 0;
}

.vd-start-intro { background: var(--vd-bg-alt); }

.vd-start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vd-start-text h2 { margin-bottom: 1.25rem; }
.vd-start-text p { margin-bottom: 1rem; }

.vd-start-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--vd-r-lg);
  box-shadow: var(--vd-shadow-xl);
}

.vd-detail-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vd-detail-card {
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  overflow: hidden;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vd-detail-card:hover {
  box-shadow: var(--vd-shadow-lg);
  transform: translateY(-3px);
}

.vd-detail-header {
  background: var(--vd-accent2);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vd-detail-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

.vd-detail-header h3 {
  color: #fff;
  font-size: 1rem;
  flex: 1;
  margin-top: 0.25rem;
}

.vd-detail-time {
  font-size: 0.75rem;
  color: var(--vd-accent3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}

.vd-detail-body {
  padding: 1.5rem;
}

.vd-detail-body p { font-size: 0.88rem; margin-bottom: 1rem; }

.vd-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vd-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--vd-text-secondary);
}

.vd-detail-list li i { color: var(--vd-accent); font-size: 0.8rem; flex-shrink: 0; }


.vd-faq { background: var(--vd-bg-alt); }

.vd-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vd-faq-item {
  background: var(--vd-surface);
  border-radius: var(--vd-r-md);
  border: 1px solid var(--vd-border);
  overflow: hidden;
  box-shadow: var(--vd-shadow-sm);
}

.vd-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vd-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease;
}

.vd-faq-q:hover { background: var(--vd-bg-alt); }

.vd-faq-q i {
  transition: transform 0.3s ease;
  color: var(--vd-accent);
  flex-shrink: 0;
}

.vd-faq-item.vd-faq-open .vd-faq-q i { transform: rotate(180deg); }

.vd-faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.vd-faq-item.vd-faq-open .vd-faq-a { display: block; }
.vd-faq-a p { font-size: 0.9rem; }

/* ============================================
   STRUMENTI PRONTI PAGE
   ============================================ */
.vd-tools-main {
  padding: var(--vd-space-xl) 0;
}

.vd-tools-intro {
  max-width: 680px;
  margin: 0 auto var(--vd-space-lg);
  text-align: center;
}

.vd-tools-intro p { font-size: 1.05rem; }

.vd-tools-category {
  margin-bottom: 4rem;
}

.vd-tools-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--vd-border);
}

.vd-tools-cat-icon {
  width: 56px;
  height: 56px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.vd-tools-cat-header h2 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.vd-tools-cat-header p { font-size: 0.9rem; margin: 0; }

.vd-tools-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vd-tool-card {
  background: var(--vd-surface);
  border-radius: var(--vd-r-md);
  padding: 1.5rem;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.vd-tool-card:hover {
  box-shadow: var(--vd-shadow-md);
  transform: translateY(-3px);
  border-color: rgba(45,106,79,0.2);
}

.vd-tool-card-icon {
  width: 44px;
  height: 44px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1.1rem;
}

.vd-tool-card-body { flex: 1; }
.vd-tool-card-body h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.vd-tool-card-body p { font-size: 0.83rem; line-height: 1.65; margin-bottom: 0.75rem; }

.vd-tool-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--vd-bg-alt);
  color: var(--vd-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: var(--vd-r-sm);
  border: 1px solid var(--vd-border);
}

.vd-tool-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--vd-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.vd-tool-card-cta:hover { gap: 0.7rem; }

.vd-tools-image-section {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
}

.vd-tools-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vd-tools-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--vd-r-lg);
  box-shadow: var(--vd-shadow-xl);
}

.vd-tools-img-text h3 { margin-bottom: 1rem; }
.vd-tools-img-text p { margin-bottom: 1rem; font-size: 0.95rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.vd-contact-section {
  padding: var(--vd-space-xl) 0;
}

.vd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.vd-contact-form-wrap h2,
.vd-contact-info h2 { margin-bottom: 2rem; }

.vd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vd-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-text-primary);
}

.vd-form-group input,
.vd-form-group textarea {
  background: var(--vd-surface);
  border: 1.5px solid var(--vd-border);
  border-radius: var(--vd-r-md);
  padding: 0.75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--vd-text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.vd-form-group input:focus,
.vd-form-group textarea:focus {
  outline: none;
  border-color: var(--vd-accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.vd-form-group textarea { resize: vertical; min-height: 140px; }

.vd-form-privacy {
  margin-top: 0.25rem;
}

.vd-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.vd-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--vd-accent);
  cursor: pointer;
}

.vd-privacy-label span {
  font-size: 0.83rem;
  color: var(--vd-text-secondary);
  line-height: 1.5;
}

.vd-privacy-label a {
  color: var(--vd-accent);
  text-decoration: underline;
}

.vd-contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.vd-contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.vd-contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vd-text-primary);
  margin-bottom: 0.25rem;
}

.vd-contact-detail p { font-size: 0.88rem; margin: 0; }
.vd-contact-detail a { color: var(--vd-text-secondary); transition: color 0.2s ease; }
.vd-contact-detail a:hover { color: var(--vd-accent); }

.vd-contact-map {
  margin-top: 2rem;
  border-radius: var(--vd-r-md);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
}


.vd-inquiry-timeline {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-bg-alt);
}

.vd-inq-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.vd-inq-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--vd-border);
  z-index: 0;
}

.vd-inq-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vd-inq-icon {
  width: 56px;
  height: 56px;
  background: var(--vd-accent);
  border-radius: var(--vd-r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--vd-shadow-md);
  flex-shrink: 0;
  border: 3px solid var(--vd-bg-alt);
}

.vd-inq-line { display: none; }

.vd-inq-content {}
.vd-inq-time {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vd-accent);
  display: block;
  margin-bottom: 0.4rem;
}
.vd-inq-content h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.vd-inq-content p { font-size: 0.83rem; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.vd-legal-section {
  padding: var(--vd-space-xl) 0;
}

.vd-legal-doc {
  max-width: 820px;
  margin: 0 auto;
}

.vd-legal-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  border-left: 4px solid var(--vd-accent);
}

.vd-legal-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-accent2);
}


.vd-timeline-legal {
  position: relative;
  padding-left: 3rem;
}

.vd-timeline-legal::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vd-border);
}

.vd-tl-item {
  position: relative;
  margin-bottom: 3rem;
}

.vd-tl-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 2rem;
  display: flex;
  justify-content: center;
}

.vd-tl-date {
  background: var(--vd-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.4rem;
  border-radius: var(--vd-r-sm);
  white-space: nowrap;
}

.vd-tl-body h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--vd-border);
}

.vd-tl-body h4 { margin: 1.25rem 0 0.5rem; font-size: 0.95rem; }
.vd-tl-body p { font-size: 0.9rem; margin-bottom: 0.75rem; }

.vd-legal-box {
  background: var(--vd-bg-alt);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-r-md);
  padding: 1.25rem;
  margin: 1rem 0;
}

.vd-legal-box p { margin: 0; font-size: 0.88rem; line-height: 1.8; }


.vd-terms-legal {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vd-terms-block {
  background: var(--vd-surface);
  border-radius: var(--vd-r-md);
  padding: 2rem;
  border: 1px solid var(--vd-border);
  box-shadow: var(--vd-shadow-sm);
}

.vd-terms-block h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--vd-accent2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vd-terms-block p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.vd-terms-block p:last-child { margin-bottom: 0; }


.vd-cookie-legal {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vd-cookie-intro {
  background: var(--vd-accent-pale);
  border-radius: var(--vd-r-md);
  padding: 1.5rem;
  border-left: 4px solid var(--vd-accent);
}

.vd-cookie-intro p { font-size: 0.9rem; margin: 0; }

.vd-cookie-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--vd-accent-pale);
  color: var(--vd-text-primary);
}

.vd-cookie-section p { font-size: 0.9rem; margin-bottom: 0.75rem; }

.vd-cookie-table {
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-r-md);
  overflow: hidden;
  margin-top: 1rem;
}

.vd-cookie-row {
  display: grid;
  grid-template-columns: 1.5fr 3fr 1fr;
  gap: 0;
}

.vd-cookie-row span {
  padding: 0.75rem 1rem;
  font-size: 0.83rem;
  border-right: 1px solid var(--vd-border);
  border-bottom: 1px solid var(--vd-border);
  color: var(--vd-text-secondary);
}

.vd-cookie-row span:last-child { border-right: none; }
.vd-cookie-row:last-child span { border-bottom: none; }

.vd-cookie-row-header span {
  background: var(--vd-bg-alt);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vd-text-muted);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.vd-thanks-body .vd-footer { margin-top: 0; }

.vd-thanks-main {
  min-height: calc(100vh - var(--vd-nav-h) - 300px);
  background: linear-gradient(135deg, var(--vd-accent2) 0%, var(--vd-accent) 60%, var(--vd-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--vd-nav-h) + 2rem) 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vd-thanks-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.vd-thanks-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.vd-thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--vd-r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.vd-thanks-content h1 { color: #fff; margin-bottom: 1.25rem; }
.vd-thanks-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.vd-footer {
  background: var(--vd-text-primary);
  color: rgba(255,255,255,0.75);
  position: relative;
  margin-top: auto;
}

.vd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 0;
}

.vd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vd-footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.85);
}

.vd-footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }

.vd-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vd-footer-contact-list a,
.vd-footer-contact-list span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vd-footer-contact-list a:hover { color: var(--vd-accent3); }
.vd-footer-contact-list i { color: var(--vd-accent3); width: 14px; }

.vd-footer-col h5 { color: rgba(255,255,255,0.4); margin-bottom: 1rem; }

.vd-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vd-footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vd-footer-col ul li a:hover { color: var(--vd-accent3); }

.vd-footer-legal-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.15rem 0;
}

.vd-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.vd-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.vd-footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s ease; }
.vd-footer-bottom a:hover { color: var(--vd-accent3); }

.vd-back-top {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--vd-accent);
  color: #fff;
  border: none;
  border-radius: var(--vd-r-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--vd-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
}

.vd-back-top.vd-visible {
  opacity: 1;
  pointer-events: all;
}

.vd-back-top:hover {
  background: var(--vd-accent2);
  transform: translateY(-3px);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.vd-cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: min(480px, calc(100vw - 2rem));
  background: var(--vd-surface);
  border-radius: var(--vd-r-lg);
  box-shadow: var(--vd-shadow-xl);
  border: 1px solid var(--vd-border);
  padding: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.vd-cookie-consent.vd-cookie-visible {
  transform: translateX(-50%) translateY(0);
}

.vd-cookie-simple {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vd-cookie-simple p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin:
0; }

.vd-cookie-simple-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vd-cookie-btn-accept {
  flex: 1;
  background: var(--vd-accent);
  color: #fff;
  border: none;
  border-radius: var(--vd-r-full);
  padding: 0.65rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}

.vd-cookie-btn-accept:hover {
  background: var(--vd-accent2);
  transform: translateY(-1px);
}

.vd-cookie-btn-settings {
  flex: 1;
  background: transparent;
  color: var(--vd-text-secondary);
  border: 1.5px solid var(--vd-border);
  border-radius: var(--vd-r-full);
  padding: 0.65rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.vd-cookie-btn-settings:hover {
  border-color: var(--vd-accent);
  color: var(--vd-accent);
}

.vd-cookie-expanded {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.vd-cookie-consent.vd-cookie-settings-open .vd-cookie-simple {
  display: none;
}

.vd-cookie-consent.vd-cookie-settings-open .vd-cookie-expanded {
  display: flex;
}

.vd-cookie-expanded-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vd-text-primary);
  margin: 0;
}

.vd-cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--vd-bg-alt);
  border-radius: var(--vd-r-md);
  border: 1px solid var(--vd-border);
}

.vd-cookie-category-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vd-text-primary);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.vd-cookie-category-info p {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.5;
}

.vd-cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.vd-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.vd-cookie-toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--vd-border);
  border-radius: var(--vd-r-full);
  cursor: pointer;
  transition: background 0.25s ease;
  position: relative;
}

.vd-cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: var(--vd-r-full);
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.vd-cookie-toggle input:checked + .vd-cookie-toggle-slider {
  background: var(--vd-accent);
}

.vd-cookie-toggle input:checked + .vd-cookie-toggle-slider::after {
  transform: translateX(20px);
}

.vd-cookie-toggle input:disabled + .vd-cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.vd-cookie-expanded-actions {
  display: flex;
  gap: 0.75rem;
}

.vd-cookie-btn-save {
  flex: 1;
  background: var(--vd-accent);
  color: #fff;
  border: none;
  border-radius: var(--vd-r-full);
  padding: 0.65rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.vd-cookie-btn-save:hover { background: var(--vd-accent2); }

.vd-cookie-btn-back {
  background: transparent;
  color: var(--vd-text-muted);
  border: 1.5px solid var(--vd-border);
  border-radius: var(--vd-r-full);
  padding: 0.65rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.vd-cookie-btn-back:hover {
  border-color: var(--vd-accent);
  color: var(--vd-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */


@media (max-width: 1024px) {
  .vd-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vd-hero-images {
    height: 360px;
    order: -1;
  }

  .vd-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vd-about-grid,
  .vd-dna-grid,
  .vd-approach-inner,
  .vd-start-grid,
  .vd-tools-img-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vd-about-img-wrap img,
  .vd-dna-img img,
  .vd-approach-img img,
  .vd-start-img img,
  .vd-tools-img-main img {
    height: 300px;
  }

  .vd-about-img-badge {
    bottom: -1rem;
    right: -0.5rem;
  }

  .vd-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-detail-cards {
    grid-template-columns: 1fr;
  }

  .vd-tools-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vd-inq-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .vd-inq-steps::before { display: none; }

  .vd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .vd-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .vd-cta-deco { display: none; }

  .vd-sidebar-cta { display: none; }
}


@media (max-width: 768px) {
  :root {
    --vd-nav-h: 64px;
    --vd-space-xl: 4rem;
    --vd-space-lg: 2.5rem;
  }

  .vd-nav-tabs { display: none; }
  .vd-hamburger { display: flex; }

  .vd-mobile-nav {
    display: flex;
    justify-content: space-around;
  }

  body { padding-bottom: 70px; }

  .vd-hero {
    padding-top: calc(var(--vd-nav-h) + 2rem);
    padding-bottom: 3rem;
    min-height: auto;
  }

  .vd-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vd-hero-images {
    height: 280px;
    order: -1;
  }

  .vd-hero-img-back {
    width: 80%;
  }

  .vd-hero-img-back img { height: 220px; }
  .vd-hero-img-front img { height: 180px; }

  .vd-hero-scroll-hint { display: none; }

  .vd-hero-actions {
    flex-direction: column;
  }

  .vd-hero-actions a { width: 100%; justify-content: center; }

  .vd-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vd-services-grid {
    grid-template-columns: 1fr;
  }

  .vd-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vd-tools-grid {
    grid-template-columns: 1fr;
  }

  .vd-tools-cards {
    grid-template-columns: 1fr;
  }

  .vd-form-row {
    grid-template-columns: 1fr;
  }

  .vd-inq-steps {
    grid-template-columns: 1fr;
  }

  .vd-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vd-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .vd-back-top {
    bottom: 5.5rem;
    right: 1rem;
  }

  .vd-cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .vd-section-header {
    margin-bottom: 2.5rem;
  }

  .vd-page-hero {
    padding-top: calc(var(--vd-nav-h) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .vd-timeline-legal {
    padding-left: 2rem;
  }

  .vd-tl-marker {
    left: -2rem;
  }

  .vd-cookie-row {
    grid-template-columns: 1fr 2fr 0.8fr;
  }

  .vd-detail-header {
    flex-wrap: wrap;
  }

  .vd-process-steps {
    padding-left: 1.5rem;
  }

  .vd-step-dot {
    left: -2.1rem;
  }

  .vd-swiper-prev,
  .vd-swiper-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .vd-cert-grid {
    grid-template-columns: 1fr;
  }

  .vd-hero-badge {
    font-size: 0.72rem;
  }

  .vd-hero-tags {
    gap: 0.4rem;
  }

  .vd-tag {
    font-size: 0.72rem;
  }

  .vd-legal-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .vd-cookie-row {
    grid-template-columns: 1fr;
  }

  .vd-cookie-row span {
    border-right: none;
  }

  .vd-cookie-row-header { display: none; }
}