


:root {
  --vd-aurora-1: #a8edea;
  --vd-aurora-2: #7ec8c8;
  --vd-aurora-3: #b8a9e8;
  --vd-aurora-4: #d4a8d4;
  --vd-aurora-5: #a8d8b0;
  --vd-primary: #2d4a3e;
  --vd-secondary: #5a3e7a;
  --vd-accent: #7ec8a0;
  --vd-text: #1a2e25;
  --vd-text-light: #4a6358;
  --vd-bg: #f0f7f4;
  --vd-white: #fafffe;
  --vd-nav-h: 72px;
  --vd-shadow-sm: 0 2px 8px rgba(45,74,62,0.08), 0 1px 3px rgba(45,74,62,0.12);
  --vd-shadow-md: 0 4px 20px rgba(45,74,62,0.10), 0 2px 8px rgba(45,74,62,0.14);
  --vd-shadow-lg: 0 8px 40px rgba(45,74,62,0.12), 0 4px 16px rgba(45,74,62,0.16);
  --vd-shadow-xl: 0 16px 60px rgba(45,74,62,0.14), 0 8px 24px rgba(45,74,62,0.18);
  --vd-radius-sm: 8px;
  --vd-radius-md: 16px;
  --vd-radius-lg: 24px;
  --vd-radius-xl: 40px;
  --vd-space-xs: 0.5rem;
  --vd-space-sm: 1rem;
  --vd-space-md: 2rem;
  --vd-space-lg: 4rem;
  --vd-space-xl: 6rem;
}

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

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

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--vd-bg);
  color: var(--vd-text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: var(--vd-primary);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--vd-secondary);
}


.vd-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}


.vd-section {
  padding: var(--vd-space-xl) 0;
}


.vd-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(250,255,254,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vd-search-overlay.vd-open {
  opacity: 1;
  pointer-events: all;
}

.vd-search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  text-align: center;
}

.vd-search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--vd-text-light);
  padding: 10px;
  border-radius: var(--vd-radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
}

.vd-search-close:hover {
  color: var(--vd-primary);
  background: rgba(126,200,160,0.15);
}

.vd-search-form-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid var(--vd-primary);
  padding-bottom: 12px;
}

.vd-search-icon-big {
  font-size: 1.4rem;
  color: var(--vd-text-light);
  flex-shrink: 0;
}

.vd-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--vd-text);
}

.vd-search-input::placeholder {
  color: var(--vd-text-light);
  opacity: 0.6;
}

.vd-search-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--vd-text-light);
}


.vd-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(26,46,37,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.vd-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  width: min(320px, 85vw);
  background: var(--vd-white);
  box-shadow: -8px 0 40px rgba(45,74,62,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}

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

.vd-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(126,200,160,0.15);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--vd-text);
  width: 44px;
  height: 44px;
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.vd-mobile-close:hover {
  background: var(--vd-accent);
  color: var(--vd-white);
}

.vd-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.vd-mobile-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--vd-text-light);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--vd-radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
}

.vd-mobile-link:hover,
.vd-mobile-link.vd-active {
  color: var(--vd-primary);
  background: rgba(126,200,160,0.15);
  font-weight: 600;
}

.vd-mobile-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(126,200,160,0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--vd-text-light);
}

.vd-mobile-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-mobile-footer i {
  color: var(--vd-accent);
  width: 16px;
}


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

.vd-hamburger:hover {
  background: rgba(126,200,160,0.15);
}

.vd-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vd-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.vd-hero {
  min-height: 100vh;
  padding-top: var(--vd-nav-h);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.vd-hero-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-hero-top {
  padding: 60px 0 0;
  max-width: 820px;
}

.vd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126,200,160,0.2);
  color: var(--vd-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--vd-radius-xl);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(126,200,160,0.4);
}

.vd-hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--vd-text);
}

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


.vd-hero-strip {
  margin: 2.5rem -24px;
  overflow: hidden;
}

.vd-hero-strip-inner {
  position: relative;
  height: 220px;
}

.vd-hero-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.vd-hero-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,74,62,0.7) 0%, rgba(90,62,122,0.5) 50%, rgba(45,74,62,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vd-strip-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vd-hero-bottom {
  padding: 0 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.vd-hero-desc {
  font-size: 1.1rem;
  color: var(--vd-text-light);
  max-width: 520px;
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.vd-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.vd-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--vd-text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.vd-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--vd-text-light), transparent);
  animation: vd-scroll-pulse 2s ease-in-out infinite;
}

@keyframes vd-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--vd-radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.vd-btn-primary {
  background: var(--vd-primary);
  color: var(--vd-white);
  border-color: var(--vd-primary);
  box-shadow: 0 4px 16px rgba(45,74,62,0.25), 0 2px 6px rgba(45,74,62,0.18);
}

.vd-btn-primary:hover {
  background: var(--vd-secondary);
  border-color: var(--vd-secondary);
  color: var(--vd-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,62,122,0.3), 0 4px 10px rgba(90,62,122,0.2);
}

.vd-btn-ghost {
  background: transparent;
  color: var(--vd-primary);
  border-color: rgba(45,74,62,0.3);
}

.vd-btn-ghost:hover {
  background: rgba(45,74,62,0.06);
  border-color: var(--vd-primary);
  color: var(--vd-primary);
  transform: translateY(-2px);
}

.vd-btn-outline {
  background: transparent;
  color: var(--vd-primary);
  border-color: var(--vd-primary);
}

.vd-btn-outline:hover {
  background: var(--vd-primary);
  color: var(--vd-white);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-md);
}

.vd-btn-white {
  background: var(--vd-white);
  color: var(--vd-primary);
  border-color: var(--vd-white);
  box-shadow: var(--vd-shadow-md);
}

.vd-btn-white:hover {
  background: var(--vd-bg);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}

.vd-btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  color: var(--vd-white);
}

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


.vd-section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-secondary);
  background: rgba(90,62,122,0.1);
  padding: 5px 12px;
  border-radius: var(--vd-radius-xl);
  margin-bottom: 1rem;
}

.vd-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--vd-text);
  margin-bottom: 1rem;
}

.vd-section-sub {
  font-size: 1.05rem;
  color: var(--vd-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.vd-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.vd-section-header .vd-section-sub {
  margin: 0 auto;
}


.vd-intro-strip {
  background: rgba(250,255,254,0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(126,200,160,0.2);
  border-bottom: 1px solid rgba(126,200,160,0.2);
  padding: 1.5rem 0;
}

.vd-intro-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.vd-intro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vd-text-light);
  white-space: nowrap;
}

.vd-intro-item i {
  color: var(--vd-accent);
  font-size: 1rem;
}


.vd-how-it-works {
  background: rgba(250,255,254,0.6);
  backdrop-filter: blur(8px);
}

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

.vd-step-card {
  background: var(--vd-white);
  border-radius: var(--vd-radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--vd-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(126,200,160,0.15);
}

.vd-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-xl);
}

.vd-step-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(126,200,160,0.25);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.vd-step-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(126,200,160,0.2), rgba(184,169,232,0.2));
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--vd-primary);
  box-shadow: 0 2px 8px rgba(126,200,160,0.2), 0 1px 3px rgba(126,200,160,0.15);
}

.vd-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.vd-step-text {
  font-size: 0.95rem;
  color: var(--vd-text-light);
  line-height: 1.7;
}

.vd-step-arrow {
  position: absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--vd-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-accent);
  font-size: 0.8rem;
  box-shadow: var(--vd-shadow-sm);
  z-index: 1;
}


.vd-gradient-fade {
  height: 120px;
  background: linear-gradient(to bottom, rgba(250,255,254,0.6) 0%, rgba(240,247,244,0.3) 50%, rgba(240,234,248,0.4) 100%);
  pointer-events: none;
}


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

.vd-plants-text p {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.75;
}

.vd-plants-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.vd-plant-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--vd-radius-md);
  box-shadow: var(--vd-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.vd-plant-img:hover {
  transform: scale(1.03);
  box-shadow: var(--vd-shadow-lg);
}

.vd-plant-img-large {
  grid-column: 1 / -1;
  height: 260px;
}


.vd-hscroll-section {
  overflow: hidden;
}

.vd-hscroll-wrapper {
  position: relative;
  margin-top: 2rem;
}

.vd-hscroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 24px 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.vd-hscroll-track::-webkit-scrollbar {
  display: none;
}

.vd-hscroll-track:active {
  cursor: grabbing;
}

.vd-hscroll-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--vd-white);
  border-radius: var(--vd-radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid rgba(126,200,160,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vd-hscroll-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(168,237,234,0.3), rgba(184,169,232,0.3));
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--vd-secondary);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 6px rgba(90,62,122,0.15);
}

.vd-hscroll-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.vd-hscroll-card p {
  font-size: 0.92rem;
  color: var(--vd-text-light);
  line-height: 1.65;
}

.vd-hscroll-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding: 0 24px;
}

.vd-hscroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vd-white);
  border: 1px solid rgba(126,200,160,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-light);
  font-size: 0.9rem;
  box-shadow: var(--vd-shadow-sm);
  transition: all 0.25s ease;
}

.vd-hscroll-btn:hover {
  background: var(--vd-primary);
  color: var(--vd-white);
  border-color: var(--vd-primary);
  box-shadow: var(--vd-shadow-md);
  transform: scale(1.08);
}


.vd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.vd-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--vd-radius-md);
  display: block;
  box-shadow: var(--vd-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vd-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--vd-shadow-lg);
}

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

.vd-gallery-item:hover img {
  transform: scale(1.06);
}

.vd-gallery-wide {
  grid-column: span 2;
}

.vd-gallery-wide img {
  height: 260px;
}

.vd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,74,62,0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--vd-white);
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.vd-gallery-item:hover .vd-gallery-overlay {
  background: rgba(45,74,62,0.5);
}

.vd-gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.vd-gallery-item:hover .vd-gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}


.vd-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 1rem;
}

.vd-gallery-section-title {
  margin-bottom: 1.5rem;
}

.vd-gallery-cat-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vd-text);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(126,200,160,0.3);
  letter-spacing: -0.02em;
}


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

.vd-info-card {
  background: var(--vd-white);
  border-radius: var(--vd-radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--vd-shadow-sm);
  border: 1px solid rgba(126,200,160,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vd-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(126,200,160,0.2), rgba(168,237,234,0.2));
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--vd-primary);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 6px rgba(126,200,160,0.2);
}

.vd-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.vd-info-card p {
  font-size: 0.9rem;
  color: var(--vd-text-light);
  line-height: 1.65;
}


.vd-cta-section {
  padding: 5rem 0;
}

.vd-cta-box {
  background: linear-gradient(135deg, var(--vd-primary) 0%, var(--vd-secondary) 100%);
  border-radius: var(--vd-radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 16px 60px rgba(45,74,62,0.2), 0 8px 24px rgba(90,62,122,0.15);
  overflow: hidden;
  position: relative;
}

.vd-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.vd-cta-content .vd-section-tag {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}

.vd-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--vd-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.vd-cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.vd-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vd-cta-image {
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

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


.vd-page-hero {
  padding: calc(var(--vd-nav-h) + 4rem) 0 3rem;
  text-align: center;
}

.vd-page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--vd-text);
  margin-bottom: 1rem;
}

.vd-page-subtitle {
  font-size: 1.1rem;
  color: var(--vd-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


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

.vd-about-text p {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.8;
}

.vd-about-img {
  width: 100%;
  border-radius: var(--vd-radius-lg);
  box-shadow: var(--vd-shadow-lg);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.vd-about-img:hover {
  transform: scale(1.02);
}


.vd-values-section {
  background: rgba(250,255,254,0.6);
}

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

.vd-value-item {
  background: var(--vd-white);
  border-radius: var(--vd-radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--vd-shadow-sm);
  border-left: 4px solid var(--vd-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vd-value-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(126,200,160,0.2);
  line-height: 1;
}

.vd-value-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.vd-value-item p {
  font-size: 0.95rem;
  color: var(--vd-text-light);
  line-height: 1.7;
}


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

.vd-team-img {
  width: 100%;
  border-radius: var(--vd-radius-lg);
  box-shadow: var(--vd-shadow-lg);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vd-team-img:hover {
  transform: scale(1.02);
}

.vd-team-content p {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.8;
}


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

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

.vd-location-item i {
  color: var(--vd-accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.vd-location-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vd-text-light);
  margin-bottom: 4px;
}

.vd-location-item p {
  font-size: 0.95rem;
  color: var(--vd-text);
  line-height: 1.6;
}

.vd-location-item a {
  color: var(--vd-primary);
  text-decoration: none;
  font-weight: 500;
}

.vd-location-item a:hover {
  color: var(--vd-secondary);
}


.vd-courses-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.vd-course-card {
  background: var(--vd-white);
  border-radius: var(--vd-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid rgba(126,200,160,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.vd-course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-xl);
}

.vd-course-featured {
  border: 2px solid var(--vd-accent);
  box-shadow: var(--vd-shadow-lg);
}

.vd-course-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vd-accent), var(--vd-aurora-2));
  color: var(--vd-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--vd-radius-xl);
  margin-bottom: 1.2rem;
}

.vd-course-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(126,200,160,0.2), rgba(184,169,232,0.2));
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vd-primary);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(126,200,160,0.2);
}

.vd-course-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.vd-course-desc {
  font-size: 0.92rem;
  color: var(--vd-text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.vd-course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-course-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--vd-text-light);
}

.vd-course-list i {
  color: var(--vd-accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}


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

.vd-expect-text p {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.8;
}

.vd-expect-img {
  width: 100%;
  border-radius: var(--vd-radius-lg);
  box-shadow: var(--vd-shadow-lg);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vd-expect-img:hover {
  transform: scale(1.02);
}


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

.vd-faq-item {
  background: var(--vd-white);
  border-radius: var(--vd-radius-md);
  padding: 1.8rem;
  box-shadow: var(--vd-shadow-sm);
  border: 1px solid rgba(126,200,160,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vd-faq-q {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vd-faq-q i {
  color: var(--vd-secondary);
  font-size: 0.9rem;
  margin-top: 3px;
flex-shrink: 0;
}

.vd-faq-a {
  font-size: 0.92rem;
  color: var(--vd-text-light);
  line-height: 1.7;
}


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

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

.vd-contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(126,200,160,0.2), rgba(168,237,234,0.2));
  border-radius: var(--vd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--vd-primary);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(126,200,160,0.15);
}

.vd-contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vd-text-light);
  margin-bottom: 4px;
}

.vd-contact-detail p {
  font-size: 0.95rem;
  color: var(--vd-text);
  line-height: 1.5;
}

.vd-contact-detail a {
  color: var(--vd-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.vd-contact-detail a:hover {
  color: var(--vd-secondary);
}


.vd-form-card {
  background: var(--vd-white);
  border-radius: var(--vd-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--vd-shadow-lg);
  border: 1px solid rgba(126,200,160,0.15);
}

.vd-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.vd-form-subtitle {
  font-size: 0.92rem;
  color: var(--vd-text-light);
  margin-bottom: 2rem;
}

.vd-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.vd-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(126,200,160,0.15);
  color: var(--vd-text-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(126,200,160,0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vd-step-dot.vd-step-active {
  background: var(--vd-primary);
  color: var(--vd-white);
  border-color: var(--vd-primary);
  box-shadow: 0 4px 12px rgba(45,74,62,0.3);
}

.vd-step-dot.vd-step-done {
  background: var(--vd-accent);
  color: var(--vd-white);
  border-color: var(--vd-accent);
}

.vd-step-line {
  flex: 1;
  height: 2px;
  background: rgba(126,200,160,0.3);
  margin: 0 8px;
  transition: background 0.3s ease;
}

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

.vd-form-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vd-form-step.vd-hidden {
  display: none;
}

.vd-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vd-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-text);
  letter-spacing: 0.02em;
}

.vd-input,
.vd-textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--vd-text);
  background: var(--vd-bg);
  border: 1.5px solid rgba(126,200,160,0.3);
  border-radius: var(--vd-radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.vd-input:focus,
.vd-textarea:focus {
  border-color: var(--vd-accent);
  box-shadow: 0 0 0 3px rgba(126,200,160,0.15);
}

.vd-input::placeholder,
.vd-textarea::placeholder {
  color: rgba(74,99,88,0.5);
}

.vd-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.vd-privacy-group {
  margin-top: 0.4rem;
}

.vd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--vd-text-light);
  line-height: 1.5;
}

.vd-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.vd-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(126,200,160,0.5);
  border-radius: 4px;
  background: var(--vd-bg);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.25s ease;
  position: relative;
}

.vd-checkbox:checked + .vd-checkbox-custom {
  background: var(--vd-accent);
  border-color: var(--vd-accent);
}

.vd-checkbox:checked + .vd-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--vd-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.vd-checkbox-label a {
  color: var(--vd-primary);
  font-weight: 500;
}

.vd-form-btns {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}


.vd-timeline-section {
  background: rgba(250,255,254,0.6);
  backdrop-filter: blur(8px);
}

.vd-timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.vd-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.vd-timeline-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--vd-primary), var(--vd-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vd-white);
  box-shadow: 0 4px 16px rgba(45,74,62,0.25), 0 2px 6px rgba(45,74,62,0.18);
  flex-shrink: 0;
  z-index: 1;
}

.vd-timeline-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, rgba(126,200,160,0.4), rgba(184,169,232,0.3));
  margin: 8px 0;
}

.vd-timeline-content {
  padding: 0.5rem 0 3rem;
}

.vd-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.vd-timeline-content p {
  font-size: 0.95rem;
  color: var(--vd-text-light);
  line-height: 1.7;
}


.vd-footer {
  background: var(--vd-primary);
  color: rgba(255,255,255,0.85);
  margin-top: auto;
}

.vd-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.vd-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.vd-footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.vd-footer-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vd-white);
  letter-spacing: -0.02em;
}

.vd-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vd-footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vd-footer-address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-footer-address i {
  color: var(--vd-accent);
  width: 14px;
  flex-shrink: 0;
}

.vd-footer-address a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.vd-footer-address a:hover {
  color: var(--vd-accent);
}

.vd-footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.vd-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.vd-footer-links a:hover {
  color: var(--vd-accent);
  padding-left: 4px;
}

.vd-footer-legal-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vd-footer-legal-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.vd-footer-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vd-footer-post {
  text-decoration: none;
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: opacity 0.25s ease;
}

.vd-footer-post:last-child {
  border-bottom: none;
}

.vd-footer-post:hover {
  opacity: 0.8;
}

.vd-footer-post-date {
  font-size: 0.72rem;
  color: var(--vd-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.vd-footer-post-title {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  font-weight: 500;
}

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

.vd-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.vd-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.vd-footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.vd-footer-bottom-links a:hover {
  color: var(--vd-accent);
}


.vd-thanks-main {
  min-height: calc(100vh - var(--vd-nav-h) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--vd-nav-h) + 2rem) 24px 4rem;
}

.vd-thanks-card {
  background: var(--vd-white);
  border-radius: var(--vd-radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--vd-shadow-xl);
  border: 1px solid rgba(126,200,160,0.2);
}

.vd-thanks-icon {
  font-size: 4rem;
  color: var(--vd-accent);
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(126,200,160,0.4));
}

.vd-thanks-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.vd-thanks-text {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.7;
}

.vd-thanks-text a {
  color: var(--vd-primary);
  font-weight: 500;
}


.vd-legal-main {
  padding: calc(var(--vd-nav-h) + 3rem) 0 5rem;
}

.vd-legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.vd-legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(126,200,160,0.3);
}

.vd-legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--vd-text);
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}

.vd-legal-meta {
  font-size: 0.85rem;
  color: var(--vd-text-light);
  margin-bottom: 1.2rem;
}

.vd-legal-intro {
  font-size: 1rem;
  color: var(--vd-text-light);
  line-height: 1.75;
  background: rgba(126,200,160,0.08);
  border-left: 3px solid var(--vd-accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--vd-radius-sm) var(--vd-radius-sm) 0;
}

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

.vd-legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(126,200,160,0.2);
  letter-spacing: -0.01em;
}

.vd-legal-section p {
  font-size: 0.95rem;
  color: var(--vd-text-light);
  line-height: 1.75;
}

.vd-legal-section a {
  color: var(--vd-primary);
  font-weight: 500;
}

.vd-legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.vd-legal-list li {
  font-size: 0.95rem;
  color: var(--vd-text-light);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.vd-legal-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--vd-accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
}


.vd-terms-body .vd-legal-section h2 {
  font-size: 1.05rem;
}


.vd-cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--vd-radius-sm);
  box-shadow: var(--vd-shadow-sm);
}

.vd-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--vd-white);
}

.vd-cookie-table th {
  background: var(--vd-primary);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vd-cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(126,200,160,0.15);
  color: var(--vd-text-light);
  vertical-align: top;
  line-height: 1.5;
}

.vd-cookie-table tr:last-child td {
  border-bottom: none;
}

.vd-cookie-table tr:nth-child(even) td {
  background: rgba(126,200,160,0.04);
}

.vd-cookie-table code {
  background: rgba(126,200,160,0.12);
  color: var(--vd-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85em;
}


.vd-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26,46,37,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2), 0 -2px 8px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.vd-cookie-bar.vd-cookie-visible {
  transform: translateY(0);
}

.vd-cookie-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vd-cookie-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

.vd-cookie-text a {
  color: var(--vd-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vd-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.vd-cookie-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.vd-cookie-btn-accept {
  background: var(--vd-accent);
  color: var(--vd-primary);
}

.vd-cookie-btn-accept:hover {
  background: #9adbb8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(126,200,160,0.3);
}

.vd-cookie-btn-reject {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.vd-cookie-btn-reject:hover {
  background: rgba(255,255,255,0.18);
  color: var(--vd-white);
}

.vd-cookie-btn-customize {
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  border: none;
  padding: 9px 10px;
}

.vd-cookie-btn-customize:hover {
  color: rgba(255,255,255,0.9);
}


.vd-cookie-customize {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.vd-cookie-customize.vd-expand {
  display: block;
}

.vd-cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vd-cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--vd-radius-sm);
  padding: 10px 16px;
  flex: 1;
  min-width: 200px;
}

.vd-cookie-category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.vd-cookie-category-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
}


.vd-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.vd-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.vd-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--vd-white);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

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

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

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

.vd-cookie-save-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: var(--vd-accent);
  color: var(--vd-primary);
  transition: all 0.25s ease;
}

.vd-cookie-save-btn:hover {
  background: #9adbb8;
  transform: translateY(-1px);
}


@media (max-width: 1024px) {
  .vd-steps-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .vd-step-arrow {
    display: none;
  }

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

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

  .vd-cta-box {
    grid-template-columns: 1fr;
    padding: 3rem 2.5rem;
  }

  .vd-cta-image {
    max-width: 500px;
  }

  .vd-courses-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .vd-about-grid,
  .vd-team-layout,
  .vd-expect-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

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

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

  .vd-gallery-wide {
    grid-column: span 2;
  }

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

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

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

  .vd-nav-links,
  .vd-nav-actions > a:not(.vd-hamburger) {
    display: none;
  }

  .vd-hamburger {
    display: flex;
  }

  .vd-nav-actions {
    gap: 4px;
  }

  .vd-nav-actions > a[href="iscrizione.html"] {
    display: none;
  }

  .vd-hero-strip-inner {
    height: 160px;
  }

  .vd-hero-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vd-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .vd-intro-grid {
    gap: 1rem;
    justify-content: flex-start;
  }

  .vd-intro-item {
    white-space: normal;
  }

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

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

  .vd-gallery-wide {
    grid-column: span 1;
  }

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

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

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

  .vd-hscroll-card {
    width: 280px;
  }

  .vd-cta-box {
    padding: 2.5rem 1.8rem;
  }

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

  .vd-form-btns {
    flex-direction: column;
  }

  .vd-cookie-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .vd-cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .vd-cookie-categories {
    flex-direction: column;
  }

  .vd-timeline {
    padding: 0 8px;
  }

  .vd-timeline-item {
    gap: 1.2rem;
  }

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

  .vd-plant-img-large {
    grid-column: 1;
  }

  .vd-legal-container {
    padding: 0 16px;
  }

  .vd-thanks-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .vd-hero-title {
    font-size: 2rem;
  }

  .vd-section-title {
    font-size: 1.6rem;
  }

  .vd-page-title {
    font-size: 1.8rem;
  }

  .vd-container {
    padding: 0 16px;
  }

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

  .vd-hscroll-card {
    width: 260px;
  }

  .vd-cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vd-cookie-btn {
    text-align: center;
  }
}


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

.vd-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}