/* ============================================================
   VOLANQORIX DIGITAL — MAIN STYLESHEET
   Prefix: vd-
   Concept: Neon Terminal
   ============================================================ */


:root {
  --vd-bg:           #0d0f12;
  --vd-bg-2:         #111417;
  --vd-bg-3:         #161a1f;
  --vd-surface:      rgba(22, 26, 31, 0.85);
  --vd-surface-2:    rgba(30, 35, 42, 0.9);
  --vd-border:       rgba(0, 245, 196, 0.12);
  --vd-border-soft:  rgba(255,255,255,0.06);

  --vd-cyan:         #00f5c4;
  --vd-cyan-dim:     rgba(0, 245, 196, 0.15);
  --vd-cyan-glow:    rgba(0, 245, 196, 0.08);
  --vd-magenta:      #f500c4;
  --vd-amber:        #f5a000;

  --vd-text:         #e2e8f0;
  --vd-text-2:       #94a3b8;
  --vd-text-3:       #64748b;
  --vd-heading:      #f0f4f8;

  --vd-shadow-sm:    0 2px 8px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
  --vd-shadow-md:    0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,245,196,0.05);
  --vd-shadow-lg:    0 8px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,245,196,0.08);
  --vd-shadow-glow:  0 0 20px rgba(0,245,196,0.2), 0 0 60px rgba(0,245,196,0.08);
  --vd-shadow-card:  0 1px 3px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);

  --vd-radius-sm:    6px;
  --vd-radius-md:    12px;
  --vd-radius-lg:    20px;
  --vd-radius-xl:    28px;

  --vd-space-xs:     0.5rem;
  --vd-space-sm:     1rem;
  --vd-space-md:     1.5rem;
  --vd-space-lg:     2.5rem;
  --vd-space-xl:     4rem;
  --vd-space-2xl:    6rem;

  --vd-font-head:    'Space Grotesk', sans-serif;
  --vd-font-body:    'Inter', sans-serif;
  --vd-font-mono:    'Space Grotesk', monospace;

  --vd-transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --vd-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: var(--vd-font-body);
  background-color: var(--vd-bg);
  color: var(--vd-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--vd-cyan); text-decoration: none; transition: color var(--vd-transition), opacity var(--vd-transition); }
a:hover { color: var(--vd-text); }

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--vd-font-head);
  color: var(--vd-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vd-text-2); }

p { color: var(--vd-text); line-height: 1.75; }

.vd-mono {
  font-family: var(--vd-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.vd-accent-text { color: var(--vd-cyan) !important; }


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


.vd-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
}


.vd-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,196,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,196,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}


.vd-blink-cursor {
  animation: vdBlink 1.1s step-end infinite;
  color: var(--vd-cyan);
}

@keyframes vdBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.vd-header {
  position: relative;
  z-index: 100;
  background: rgba(13, 15, 18, 0.96);
  border-bottom: 1px solid var(--vd-border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.vd-logo { display: flex; align-items: center; flex-shrink: 0; }
.vd-logo img { transition: opacity var(--vd-transition); }
.vd-logo:hover img { opacity: 0.8; }

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

.vd-nav-link {
  font-family: var(--vd-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vd-text-2);
  padding: 0.5rem 0.875rem;
  border-radius: var(--vd-radius-sm);
  position: relative;
  transition: color var(--vd-transition), background var(--vd-transition);
}

.vd-nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--vd-cyan);
  border-radius: 2px 2px 0 0;
  transition: width var(--vd-transition);
}

.vd-nav-link:hover {
  color: var(--vd-heading);
  background: rgba(0,245,196,0.06);
}

.vd-nav-link:hover::after { width: 60%; }

.vd-nav-active {
  color: var(--vd-cyan) !important;
}

.vd-nav-active::after {
  width: 80% !important;
}


.vd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--vd-radius-sm);
  transition: background var(--vd-transition);
}

.vd-hamburger:hover { background: var(--vd-cyan-dim); }

.vd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vd-text);
  border-radius: 2px;
  transition: all var(--vd-transition);
}


.vd-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vd-transition-slow);
}

.vd-mobile-menu.vd-menu-open {
  opacity: 1;
  pointer-events: all;
}

.vd-mobile-menu-left {
  width: 55%;
  background: var(--vd-bg-3);
  border-right: 1px solid var(--vd-border);
  display: flex;
  flex-direction: column;
  padding: 2rem 2.5rem;
  transform: translateX(-100%);
  transition: transform var(--vd-transition-slow);
}

.vd-mobile-menu.vd-menu-open .vd-mobile-menu-left {
  transform: translateX(0);
}

.vd-mobile-menu-right {
  width: 45%;
  background: var(--vd-bg-2);
  transform: translateX(100%);
  transition: transform var(--vd-transition-slow);
  overflow: hidden;
}

.vd-mobile-menu.vd-menu-open .vd-mobile-menu-right {
  transform: translateX(0);
}

.vd-mobile-brand-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.vd-mobile-brand-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.vd-mobile-brand-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,15,18,0.9) 0%, transparent 60%);
}

.vd-mobile-tagline {
  font-family: var(--vd-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-cyan);
  line-height: 2;
  letter-spacing: 0.04em;
}

.vd-mobile-close {
  background: none;
  border: none;
  color: var(--vd-text-2);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 2rem;
  align-self: flex-start;
  transition: color var(--vd-transition);
  border-radius: var(--vd-radius-sm);
}

.vd-mobile-close:hover { color: var(--vd-cyan); }

.vd-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.vd-mobile-link {
  font-family: var(--vd-font-head);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--vd-text-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color var(--vd-transition), border-color var(--vd-transition), padding var(--vd-transition);
}

.vd-mobile-link:hover, .vd-mobile-link.vd-active {
  color: var(--vd-cyan);
  padding-left: 0.5rem;
}

.vd-mobile-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vd-border-soft);
}

.vd-mobile-contact a {
  font-family: var(--vd-font-mono);
  font-size: 0.9rem;
  color: var(--vd-text-3);
  transition: color var(--vd-transition);
}

.vd-mobile-contact a:hover { color: var(--vd-cyan); }


.vd-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,245,196,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(245,0,196,0.04) 0%, transparent 50%),
              var(--vd-bg);
  overflow: hidden;
}

.vd-hero > .vd-container { grid-column: 1; z-index: 2; }

.vd-hero-visual {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.vd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vd-cyan-dim);
  border: 1px solid var(--vd-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--vd-font-mono);
  font-size: 0.78rem;
  color: var(--vd-cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.vd-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--vd-heading);
}

.vd-accent {
  color: var(--vd-cyan);
  position: relative;
}

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

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

.vd-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vd-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
}

.vd-hero-meta-item i { color: var(--vd-cyan); font-size: 0.75rem; }

.vd-hero-img-frame {
  position: relative;
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-lg), var(--vd-shadow-glow);
  border: 1px solid var(--vd-border);
}

.vd-hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.vd-hero-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(13,15,18,0.9) 0%, transparent 100%);
  font-family: var(--vd-font-mono);
  font-size: 0.75rem;
  color: var(--vd-cyan);
  letter-spacing: 0.04em;
}


.vd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vd-cyan);
  color: #0a0c0e;
  font-family: var(--vd-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--vd-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--vd-transition);
  box-shadow: 0 0 20px rgba(0,245,196,0.25), 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  white-space: nowrap;
}

.vd-btn-primary:hover {
  background: #00e8b8;
  color: #070809;
  box-shadow: 0 0 32px rgba(0,245,196,0.4), 0 6px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.vd-btn-primary:active { transform: translateY(0); }

.vd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--vd-text);
  font-family: var(--vd-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--vd-radius-md);
  border: 1px solid var(--vd-border);
  cursor: pointer;
  transition: all var(--vd-transition);
  text-decoration: none;
  white-space: nowrap;
}

.vd-btn-ghost:hover {
  border-color: var(--vd-cyan);
  color: var(--vd-cyan);
  background: var(--vd-cyan-dim);
}

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

.vd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--vd-cyan);
  font-size: 0.9rem;
  font-weight: 500;
  transition: gap var(--vd-transition), color var(--vd-transition);
}

.vd-link-arrow:hover { gap: 0.75rem; color: var(--vd-text); }


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

.vd-section-header p { margin-bottom: 0.5rem; }
.vd-section-header h2 { margin-bottom: 0; }


.vd-intro-section {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-bg-2);
}

.vd-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-xl);
  padding: 3.5rem;
  box-shadow: var(--vd-shadow-card);
  backdrop-filter: blur(12px);
}

.vd-intro-text h2 { margin-bottom: 1.25rem; }
.vd-intro-text p { margin-bottom: 1rem; color: var(--vd-text-2); }
.vd-intro-text p:last-of-type { margin-bottom: 1.5rem; }

.vd-intro-image {
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid var(--vd-border-soft);
}

.vd-intro-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--vd-transition-slow);
}

.vd-intro-image:hover img { transform: scale(1.03); }


.vd-services-scroll-section {
  padding: var(--vd-space-2xl) 0 var(--vd-space-xl);
  background: var(--vd-bg);
  overflow: hidden;
}

.vd-h-scroll-wrapper {
  overflow-x: auto;
  padding: 0 1.5rem 1.5rem;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--vd-border) transparent;
  -webkit-overflow-scrolling: touch;
}

.vd-h-scroll-wrapper:active { cursor: grabbing; }

.vd-h-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.vd-h-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.vd-h-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--vd-border); border-radius: 4px; }

.vd-h-scroll-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.vd-h-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-card);
  transition: transform var(--vd-transition), box-shadow var(--vd-transition), border-color var(--vd-transition);
}

.vd-h-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-lg);
  border-color: var(--vd-border);
}

.vd-h-card-img {
  height: 180px;
  overflow: hidden;
}

.vd-h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vd-transition-slow);
}

.vd-h-card:hover .vd-h-card-img img { transform: scale(1.06); }

.vd-h-card-body { padding: 1.5rem; }

.vd-h-card-num {
  font-size: 0.75rem;
  color: var(--vd-cyan);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.vd-h-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--vd-heading);
}

.vd-h-card-body p {
  font-size: 0.875rem;
  color: var(--vd-text-2);
  line-height: 1.65;
}

.vd-scroll-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.vd-scroll-hint i { color: var(--vd-cyan); margin-right: 0.35rem; }


.vd-features-section {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-bg-2);
}

.vd-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vd-feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--vd-border-soft);
  border-bottom: 1px solid var(--vd-border-soft);
  transition: background var(--vd-transition);
}

.vd-feature-item:nth-child(even) { border-right: none; }
.vd-feature-item:nth-last-child(-n+2) { border-bottom: none; }

.vd-feature-item:hover { background: var(--vd-cyan-glow); }

.vd-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--vd-radius-md);
  background: var(--vd-cyan-dim);
  border: 1px solid var(--vd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-cyan);
  font-size: 1rem;
  transition: background var(--vd-transition), box-shadow var(--vd-transition);
}

.vd-feature-item:hover .vd-feature-icon {
  background: rgba(0,245,196,0.2);
  box-shadow: 0 0 12px rgba(0,245,196,0.25);
}

.vd-feature-body h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.vd-feature-body p { font-size: 0.875rem; color: var(--vd-text-2); line-height: 1.65; margin: 0; }


.vd-spaces-section {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-bg);
}

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

.vd-space-card {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-card);
  transition: transform var(--vd-transition), box-shadow var(--vd-transition), border-color var(--vd-transition);
}

.vd-space-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vd-shadow-lg);
  border-color: var(--vd-border);
}

.vd-space-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--vd-transition-slow);
}

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

.vd-space-card-body { padding: 1.5rem; }
.vd-space-card-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.vd-space-card-body p { font-size: 0.875rem; color: var(--vd-text-2); line-height: 1.65; margin: 0; }


.vd-cta-section {
  padding: var(--vd-space-xl) 0 var(--vd-space-2xl);
  background: var(--vd-bg-2);
}

.vd-cta-card {
  position: relative;
  overflow: hidden;
  background: var(--vd-surface-2);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius-xl);
  padding: 4rem;
  text-align: center;
  box-shadow: var(--vd-shadow-lg), inset 0 1px 0 rgba(0,245,196,0.1);
}

.vd-cta-grid-deco {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,196,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,196,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.vd-cta-content { position: relative; z-index: 1; }
.vd-cta-content p.vd-mono { margin-bottom: 0.5rem; }
.vd-cta-content h2 { margin-bottom: 1rem; }
.vd-cta-content p:not(.vd-mono) { color: var(--vd-text-2); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }


.vd-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse 100% 80% at 0% 50%, rgba(0,245,196,0.05) 0%, transparent 60%),
              var(--vd-bg);
  overflow: hidden;
}

.vd-page-hero-sm { padding: 4rem 0 3rem; }

.vd-page-hero .vd-container { position: relative; z-index: 2; }
.vd-page-hero p.vd-mono { margin-bottom: 0.75rem; }
.vd-page-hero h1 { margin-bottom: 1rem; }

.vd-page-hero-sub {
  font-size: 1.1rem;
  color: var(--vd-text-2);
  max-width: 620px;
  margin: 0;
}


.vd-commitment-section { padding: var(--vd-space-2xl) 0; background: var(--vd-bg-2); }

.vd-commitment-intro {
  max-width: 760px;
  margin-bottom: 4rem;
}

.vd-commitment-intro p { color: var(--vd-text-2); margin-bottom: 1rem; font-size: 1.05rem; }

.vd-commitment-timeline { display: flex; flex-direction: column; gap: 0; }

.vd-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--vd-border-soft);
  position: relative;
}

.vd-timeline-item:last-child { border-bottom: none; }

.vd-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}

.vd-timeline-marker span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vd-cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vd-timeline-content h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.vd-timeline-content p { color: var(--vd-text-2); margin-bottom: 0.75rem; }
.vd-timeline-content p:last-child { margin-bottom: 0; }


.vd-materials-section { padding: var(--vd-space-2xl) 0; background: var(--vd-bg); }

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

.vd-material-card {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-lg);
  padding: 2rem;
  box-shadow: var(--vd-shadow-card);
  transition: transform var(--vd-transition), border-color var(--vd-transition), box-shadow var(--vd-transition);
}

.vd-material-card:hover {
  transform: translateY(-4px);
  border-color: var(--vd-border);
  box-shadow: var(--vd-shadow-md);
}

.vd-material-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-sm);
  background: var(--vd-cyan-dim);
  border: 1px solid var(--vd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-cyan);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.vd-material-card h4 { margin-bottom: 0.75rem; font-size: 0.95rem; }
.vd-material-card p { font-size: 0.85rem; color: var(--vd-text-2); margin: 0; line-height: 1.65; }


.vd-team-section { padding: var(--vd-space-xl) 0 var(--vd-space-2xl); background: var(--vd-bg-2); }

.vd-team-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-xl);
  overflow: hidden;
  box-shadow: var(--vd-shadow-lg);
}

.vd-team-img { height: 400px; overflow: hidden; }
.vd-team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--vd-transition-slow); }
.vd-team-card:hover .vd-team-img img { transform: scale(1.03); }

.vd-team-text { padding: 3rem; }
.vd-team-text p.vd-mono { margin-bottom: 0.5rem; }
.vd-team-text h2 { margin-bottom: 1.25rem; }
.vd-team-text p:not(.vd-mono) { color: var(--vd-text-2); margin-bottom: 1rem; }
.vd-team-text p:last-of-type { margin-bottom: 1.5rem; }


.vd-service-detail-section { padding: var(--vd-space-2xl) 0; background: var(--vd-bg-2); }

.vd-service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-xl);
  margin-bottom: 2rem;
  box-shadow: var(--vd-shadow-card);
  transition: border-color var(--vd-transition), box-shadow var(--vd-transition);
}

.vd-service-detail-item:hover {
  border-color: var(--vd-border);
  box-shadow: var(--vd-shadow-md);
}

.vd-service-detail-item:last-child { margin-bottom: 0; }

.vd-service-detail-reverse { direction: rtl; }
.vd-service-detail-reverse > * { direction: ltr; }

.vd-service-detail-text p.vd-mono { margin-bottom: 0.5rem; }
.vd-service-detail-text h2 { margin-bottom: 1.25rem; }
.vd-service-detail-text p:not(.vd-mono) { color: var(--vd-text-2); margin-bottom: 1rem; }

.vd-service-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vd-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--vd-text-2);
}

.vd-service-list li i {
  color: var(--vd-cyan);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.vd-service-detail-img {
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid var(--vd-border-soft);
}

.vd-service-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform var(--vd-transition-slow);
}

.vd-service-detail-item:hover .vd-service-detail-img img { transform: scale(1.03); }


.vd-tech-section { padding: var(--vd-space-2xl) 0; background: var(--vd-bg); }

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

.vd-tech-card {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-card);
  transition: transform var(--vd-transition), border-color var(--vd-transition);
}

.vd-tech-card:hover { transform: translateY(-4px); border-color: var(--vd-border); }

.vd-tech-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--vd-transition-slow);
}

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

.vd-tech-card-body { padding: 1.75rem; }
.vd-tech-card-body h3 { margin-bottom: 0.75rem; }
.vd-tech-card-body p { font-size: 0.875rem; color: var(--vd-text-2); line-height: 1.65; margin-bottom: 0.75rem; }
.vd-tech-card-body p:last-child { margin-bottom: 0; }


.vd-ba-intro { padding: var(--vd-space-xl) 0 var(--vd-space-lg); background: var(--vd-bg-2); }

.vd-ba-intro-text {
  max-width: 760px;
}

.vd-ba-intro-text p { color: var(--vd-text-2); margin-bottom: 1rem; font-size: 1.05rem; }
.vd-ba-intro-text p:last-child { margin-bottom: 0; }

.vd-ba-gallery { padding: var(--vd-space-lg) 0 var(--vd-space-2xl); background: var(--vd-bg-2); }

.vd-ba-project {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--vd-shadow-card);
}

.vd-ba-project:last-child { margin-bottom: 0; }

.vd-ba-project-header { margin-bottom: 1.75rem; }
.vd-ba-project-header span { display: block; margin-bottom: 0.5rem; }
.vd-ba-project-header h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.vd-ba-desc { color: var(--vd-text-2); font-size: 0.95rem; margin: 0; }

.vd-ba-pair {
  margin-bottom: 1.5rem;
}

.vd-ba-img-wrap {
  position: relative;
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
}

.vd-ba-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.vd-ba-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-family: var(--vd-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.vd-ba-after {
  background: var(--vd-cyan);
  color: #0a0c0e;
}

.vd-ba-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vd-ba-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
  background: var(--vd-bg-3);
  border: 1px solid var(--vd-border-soft);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
}

.vd-ba-detail-item i { color: var(--vd-cyan); font-size: 0.72rem; }

.vd-ba-process { padding: var(--vd-space-2xl) 0; background: var(--vd-bg); }

.vd-ba-process-text {
  max-width: 700px;
}

.vd-ba-process-text p { color: var(--vd-text-2); margin-bottom: 1rem; }
.vd-ba-process-text p:last-of-type { margin-bottom: 1.5rem; }


.vd-contact-section { padding: var(--vd-space-2xl) 0; background: var(--vd-bg-2); }

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

.vd-contact-info h2 { margin-bottom: 1rem; }
.vd-contact-info > p { color: var(--vd-text-2); margin-bottom: 2rem; }

.vd-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vd-border-soft);
}

.vd-contact-item:last-of-type { border-bottom: none; }

.vd-contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-sm);
  background: var(--vd-cyan-dim);
  border: 1px solid var(--vd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-cyan);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vd-contact-item strong { display: block; font-size: 0.8rem; color: var(--vd-text-3); font-family: var(--vd-font-mono); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.25rem; }
.vd-contact-item a, .vd-contact-item span { font-size: 0.95rem; color: var(--vd-text); display: block; }
.vd-contact-item a:hover { color: var(--vd-cyan); }

.vd-contact-tips {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: var(--vd-shadow-sm);
}

.vd-contact-tips h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.vd-contact-tips > p { font-size: 0.875rem; color: var(--vd-text-2); margin-bottom: 1rem; }

.vd-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: var(--vd-text-2);
}

.vd-tip-item i { flex-shrink: 0; margin-top: 0.2rem; font-size: 0.8rem; }

.vd-tips-note {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: var(--vd-text-3) !important;
  font-style: italic;
}


.vd-form-card {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--vd-shadow-card);
}

.vd-form-progress {
  margin-bottom: 2rem;
}

.vd-form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vd-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vd-bg-3);
  border: 2px solid var(--vd-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
  transition: all var(--vd-transition);
  flex-shrink: 0;
}

.vd-step-dot.vd-step-active {
  background: var(--vd-cyan);
  border-color: var(--vd-cyan);
  color: #0a0c0e;
  box-shadow: 0 0 12px rgba(0,245,196,0.4);
}

.vd-step-dot.vd-step-done {
  background: rgba(0,245,196,0.2);
  border-color: var(--vd-cyan);
  color: var(--vd-cyan);
}

.vd-step-line {
  flex: 1;
  height: 2px;
  background: var(--vd-border-soft);
  border-radius: 2px;
  transition: background var(--vd-transition);
}

.vd-step-line.vd-step-line-done {
  background: var(--vd-cyan);
}

.vd-form-step-label {
  font-size: 0.78rem;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
  margin: 0;
}

.vd-form-step { }

.vd-hidden { display: none !important; }

.vd-form-group {
  margin-bottom: 1.25rem;
}

.vd-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--vd-text-2);
  margin-bottom: 0.5rem;
  font-family: var(--vd-font-mono);
  letter-spacing: 0.04em;
}

.vd-required { color: var(--vd-cyan); }

.vd-form-group input,
.vd-form-group textarea {
  width: 100%;
  background: var(--vd-bg-3);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-md);
  padding: 0.75rem 1rem;
  color: var(--vd-heading);
  font-family: var(--vd-font-body);
  font-size: 0.9rem;
  transition: border-color var(--vd-transition), box-shadow var(--vd-transition);
  outline: none;
  resize: vertical;
}

.vd-form-group input::placeholder,
.vd-form-group textarea::placeholder { color: var(--vd-text-3); }

.vd-form-group input:focus,
.vd-form-group textarea:focus {
  border-color: var(--vd-cyan);
  box-shadow: 0 0 0 3px rgba(0,245,196,0.12);
}

.vd-form-check { margin-bottom: 1.5rem; }

.vd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--vd-text-2);
  line-height: 1.5;
  position: relative;
}

.vd-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.vd-checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--vd-border-soft);
  border-radius: 4px;
  background: var(--vd-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vd-transition);
  margin-top: 2px;
}

.vd-checkbox-label input:checked + .vd-checkmark {
  background: var(--vd-cyan);
  border-color: var(--vd-cyan);
}

.vd-checkbox-label input:checked + .vd-checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #0a0c0e;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.vd-checkbox-label a { color: var(--vd-cyan); }
.vd-checkbox-label a:hover { text-decoration: underline; }

.vd-form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}


.vd-map-section { padding: var(--vd-space-xl) 0 var(--vd-space-2xl); background: var(--vd-bg); }

.vd-map-header { margin-bottom: 1.5rem; }
.vd-map-header p { margin-bottom: 0.5rem; }

.vd-map-frame {
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vd-border-soft);
  box-shadow: var(--vd-shadow-md);
}

.vd-map-frame iframe { display: block; filter: invert(90%) hue-rotate(180deg); }


.vd-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vd-space-2xl) 1.5rem;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,245,196,0.06) 0%, transparent 70%),
              var(--vd-bg);
}

.vd-thanks-container { width: 100%; max-width: 520px; }

.vd-thanks-card {
  background: var(--vd-surface);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius-xl);
  padding: 3.5rem;
  text-align: center;
  box-shadow: var(--vd-shadow-lg), var(--vd-shadow-glow);
}

.vd-thanks-svg-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.vd-thanks-svg {
  width: 96px;
  height: 96px;
}

.vd-thanks-text h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.vd-thanks-text p {
  color: var(--vd-text-2);
  margin-bottom: 2rem;
  font-size: 1rem;
}


.vd-legal-main { padding: var(--vd-space-2xl) 0; background: var(--vd-bg-2); }

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

.vd-legal-header { margin-bottom: 3rem; }
.vd-legal-header p.vd-mono { margin-bottom: 0.5rem; }
.vd-legal-header h1 { margin-bottom: 0.75rem; }

.vd-legal-date {
  font-size: 0.82rem;
  color: var(--vd-text-3);
  font-family: var(--vd-font-mono);
}

.vd-legal-body { }

.vd-legal-body h2 {
  font-size: 1.15rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  color: var(--vd-heading);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--vd-border-soft);
}

.vd-legal-body p {
  color: var(--vd-text-2);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.vd-legal-body p strong { color: var(--vd-text); }


.vd-footer {
  background: var(--vd-bg-3);
  border-top: 1px solid var(--vd-border-soft);
  padding: var(--vd-space-2xl) 0 0;
  margin-top: auto;
}

.vd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--vd-space-xl);
  border-bottom: 1px solid var(--vd-border-soft);
}

.vd-footer-brand img { margin-bottom: 1rem; }

.vd-footer-brand p {
  font-size: 0.875rem;
  color: var(--vd-text-3);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.vd-footer-brand address {
  font-size: 0.82rem;
  color: var(--vd-text-3);
  line-height: 1.65;
}

.vd-footer-col h5 { margin-bottom: 1rem; }

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

.vd-footer-col ul li a {
  font-size: 0.875rem;
  color: var(--vd-text-3);
  transition: color var(--vd-transition), padding-left var(--vd-transition);
}

.vd-footer-col ul li a:hover {
  color: var(--vd-cyan);
  padding-left: 0.35rem;
}

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

.vd-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--vd-text-3);
}

.vd-footer-contact-list li i { color: var(--vd-cyan); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.2rem; }
.vd-footer-contact-list li a { color: var(--vd-text-3); transition: color var(--vd-transition); }
.vd-footer-contact-list li a:hover { color: var(--vd-cyan); }

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

.vd-footer-bottom p {
  font-size: 0.78rem;
  color: var(--vd-text-3);
}

.vd-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vd-footer-legal a {
  font-size: 0.78rem;
  color: var(--vd-text-3);
  transition: color var(--vd-transition);
}

.vd-footer-legal a:hover { color: var(--vd-cyan); }


.vd-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vd-cyan);
  color: #0a0c0e;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,245,196,0.3), 0 2px 8px rgba(0,0,0,0.4);
  transition: all var(--vd-transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  z-index: 50;
}

.vd-back-top.vd-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.vd-back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,245,196,0.4), 0 4px 12px rgba(0,0,0,0.5);
}


.vd-cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vd-transition-slow);
  backdrop-filter: blur(4px);
}

.vd-cookie-backdrop.vd-show {
  opacity: 1;
  pointer-events: all;
}

.vd-cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 910;
  width: 90%;
  max-width: 480px;
  background: var(--vd-bg-3);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius-xl);
  padding: 2rem;
  box-shadow: var(--vd-shadow-lg), var(--vd-shadow-glow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--vd-transition-slow);
}

.vd-cookie-modal.vd-show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.vd-cookie-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.vd-cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-sm);
  background: var(--vd-cyan-dim);
  border: 1px solid var(--vd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-cyan);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vd-cookie-header h2 {
  font-size: 1.1rem;
  color: var(--vd-heading);
}

.vd-cookie-intro {
  font-size: 0.85rem;
  color: var(--vd-text-2);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.vd-cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.vd-cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--vd-bg-2);
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-md);
}

.vd-cookie-cat-info { display: flex; flex-direction: column; gap: 0.2rem; }
.vd-cookie-cat-info strong { font-size: 0.875rem; color: var(--vd-heading); font-weight: 600; }
.vd-cookie-cat-info span { font-size: 0.78rem; color: var(--vd-text-3); }

.vd-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

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

.vd-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--vd-bg-3);
  border: 2px solid var(--vd-border-soft);
  border-radius: 24px;
  transition: all var(--vd-transition);
}

.vd-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--vd-text-3);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all var(--vd-transition);
}

.vd-toggle input:checked + .vd-toggle-slider {
  background: var(--vd-cyan-dim);
  border-color: var(--vd-cyan);
}

.vd-toggle input:checked + .vd-toggle-slider::before {
  transform: translateX(20px);
  background: var(--vd-cyan);
}

.vd-toggle-disabled { opacity: 0.5; cursor: not-allowed; }

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

.vd-btn-cookie-reject {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 1px solid var(--vd-border-soft);
  border-radius: var(--vd-radius-md);
  color: var(--vd-text-2);
  font-family: var(--vd-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--vd-transition);
}

.vd-btn-cookie-reject:hover {
  border-color: var(--vd-text-3);
  color: var(--vd-text);
}

.vd-btn-cookie-accept {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--vd-cyan);
  border: 1px solid var(--vd-cyan);
  border-radius: var(--vd-radius-md);
  color: #0a0c0e;
  font-family: var(--vd-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vd-transition);
  box-shadow: 0 0 16px rgba(0,245,196,0.2);
}

.vd-btn-cookie-accept:hover {
  background: #00e8b8;
  box-shadow: 0 0 24px rgba(0,245,196,0.35);
}


.vd-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vd-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1100px) {
  .vd-materials-grid { grid-template-columns: 1fr 1fr; }
  .vd-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .vd-nav { display: none; }
  .vd-hamburger { display: flex; }

  .vd-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .vd-hero > .vd-container { grid-column: 1; }

  .vd-hero-visual {
    padding: 0 1.5rem 2rem;
    order: -1;
  }

  .vd-hero-img-frame img { height: 280px; }

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

  .vd-intro-image img { height: 260px; }

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

  .vd-service-detail-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .vd-service-detail-reverse { direction: ltr; }

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

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

  .vd-team-card { grid-template-columns: 1fr; }
  .vd-team-img { height: 300px; }
  .vd-team-text { padding: 2rem; }

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

@media (max-width: 640px) {
  .vd-hero-cta { flex-direction: column; }
  .vd-btn-primary, .vd-btn-ghost { width: 100%; justify-content: center; }

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

  .vd-features-grid { grid-template-columns: 1fr; }
  .vd-feature-item { border-right: none !important; }
  .vd-feature-item:last-child { border-bottom: none; }

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

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

  .vd-timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }

  .vd-cta-card { padding: 2rem 1.5rem; }

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

  .vd-footer-bottom { flex-direction: column; align-items: flex-start; }

  .vd-mobile-menu-left { width: 70%; padding: 1.5rem; }
  .vd-mobile-menu-right { width: 30%; }
  .vd-mobile-tagline { font-size: 0.7rem; }

  .vd-thanks-card { padding: 2rem; }

  .vd-form-actions { flex-direction: column; }
  .vd-form-actions .vd-btn-ghost,
  .vd-form-actions .vd-btn-primary { width: 100%; justify-content: center; }

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

  .vd-ba-pair { }
  .vd-ba-details { gap: 0.5rem; }

  .vd-service-detail-img img { height: 240px; }
}

@media (max-width: 400px) {
  .vd-mobile-link { font-size: 1.2rem; }
}