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

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  
  --primary: #2D5016;
  --secondary: #8B6914;
  --accent: #C8860A;
  --surface: #F7F4EE;
  --dark: #1A1A14;

  
  --primary-light: color-mix(in oklch, var(--primary), white 45%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 75%);
  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --primary-muted: color-mix(in oklch, var(--primary), var(--surface) 60%);

  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 80%);
  --secondary-dark: color-mix(in oklch, var(--secondary), black 20%);

  --accent-light: color-mix(in oklch, var(--accent), white 55%);
  --accent-xlight: color-mix(in oklch, var(--accent), white 82%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);
  --accent-warm: color-mix(in oklch, var(--accent), var(--secondary) 40%);

  --surface-warm: color-mix(in oklch, var(--surface), var(--secondary) 6%);
  --surface-mid: color-mix(in oklch, var(--surface), var(--primary) 8%);
  --surface-deep: color-mix(in oklch, var(--surface), var(--primary) 18%);

  --text-primary: color-mix(in oklch, var(--dark), var(--primary) 20%);
  --text-secondary: color-mix(in oklch, var(--dark), white 40%);
  --text-muted: color-mix(in oklch, var(--dark), white 60%);
  --text-on-dark: color-mix(in oklch, white, var(--surface) 15%);

  --border: color-mix(in oklch, var(--surface), var(--primary) 22%);
  --border-light: color-mix(in oklch, var(--surface), var(--primary) 12%);

  
  --shadow-xs: 0 1px 3px color-mix(in oklch, var(--primary), transparent 88%),
               0 1px 2px color-mix(in oklch, var(--secondary), transparent 92%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--primary), transparent 82%),
               0 1px 4px color-mix(in oklch, var(--secondary), transparent 88%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--primary), transparent 78%),
               0 2px 8px color-mix(in oklch, var(--secondary), transparent 84%),
               0 0 1px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--primary), transparent 72%),
               0 4px 16px color-mix(in oklch, var(--secondary), transparent 80%),
               0 1px 4px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-xl: 0 16px 48px color-mix(in oklch, var(--primary), transparent 65%),
               0 8px 24px color-mix(in oklch, var(--secondary), transparent 76%),
               0 2px 8px color-mix(in oklch, var(--primary), transparent 85%);

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

  
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  
  --nav-height: 72px;
}

/* ============================================
   SVG NOISE FILTER (Textured Modern)
   ============================================ */
.ves-noise-filter {
  display: none;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--surface);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TEXTURE OVERLAY UTILITY
   ============================================ */
.ves-textured {
  position: relative;
}

.ves-textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.ves-textured > * {
  position: relative;
  z-index: 2;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.75;
}

.ves-display {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.ves-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
}

.ves-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   COOKIE CONSENT BAR (above nav, in flow)
   ============================================ */
.ves-cookie-bar {
  background: color-mix(in oklch, var(--primary-dark), var(--dark) 30%);
  color: var(--text-on-dark);
  padding: 10px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: all var(--transition-slow);
  overflow: hidden;
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.ves-cookie-bar.ves-hidden {
  display: none;
}

.ves-cookie-bar p {
  color: color-mix(in oklch, white, var(--surface) 10%);
  font-size: 0.82rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

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

.ves-cookie-bar a:hover {
  color: white;
}

.ves-cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ves-cookie-accept,
.ves-cookie-decline {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.ves-cookie-accept {
  background: var(--accent);
  color: white;
}

.ves-cookie-accept:hover {
  background: var(--accent-dark);
}

.ves-cookie-decline {
  background: transparent;
  color: color-mix(in oklch, white, transparent 20%);
  border-color: color-mix(in oklch, white, transparent 60%);
}

.ves-cookie-decline:hover {
  border-color: white;
  color: white;
}

/* ============================================
   LANGUAGE BADGE
   ============================================ */
.ves-lang-badge {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  background: color-mix(in oklch, var(--primary), white 10%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  z-index: 100;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.ves-lang-badge .ves-flag {
  font-size: 0.9rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.ves-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: color-mix(in oklch, var(--surface), white 40%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
  display: flex;
  align-items: center;
}

.ves-nav.ves-scrolled {
  box-shadow: var(--shadow-md);
}

.ves-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.ves-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ves-logo img,
.ves-logo svg {
  height: 38px;
  width: auto;
}

.ves-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ves-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ves-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.ves-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.ves-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.ves-nav-link:hover {
  color: var(--primary);
}

.ves-nav-link:hover::after,
.ves-nav-link.ves-active::after {
  width: 100%;
}

.ves-nav-link.ves-active {
  color: var(--primary);
  font-weight: 600;
}


.ves-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: color-mix(in oklch, var(--surface), white 30%);
}

.ves-lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 2px 5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.ves-lang-btn:hover {
  color: var(--primary);
}

.ves-lang-btn.active {
  color: white;
  background: var(--primary);
  border-radius: var(--radius-sm);
}

.ves-lang-divider {
  color: var(--border);
  font-size: 0.75rem;
  line-height: 1;
}


.ves-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.ves-nav-cta:hover {
  background: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}


.ves-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.ves-hamburger:hover {
  background: var(--border-light);
}

.ves-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.ves-hamburger.ves-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ves-hamburger.ves-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ves-hamburger.ves-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU (slides from RIGHT)
   ============================================ */
.ves-mobile-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--dark), transparent 45%);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.ves-mobile-overlay.ves-active {
  opacity: 1;
  pointer-events: all;
}

.ves-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.ves-mobile-panel.ves-active {
  transform: translateX(0);
}

.ves-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.ves-mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.ves-mobile-close:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.ves-mobile-nav {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ves-mobile-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px var(--space-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--border-light);
}

.ves-mobile-link:last-child {
  border-bottom: none;
}

.ves-mobile-link:hover {
  background: var(--surface-warm);
  color: var(--primary);
  padding-left: calc(var(--space-sm) + 4px);
}

.ves-mobile-link.ves-active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-xlight);
}

.ves-mobile-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.ves-mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--surface-warm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.ves-mobile-lang .ves-lang-btn {
  font-size: 0.9rem;
  padding: 6px 14px;
}

.ves-mobile-lang .ves-lang-divider {
  font-size: 0.9rem;
}

/* ============================================
   NAV SPACER
   ============================================ */
.ves-nav-spacer {
  height: var(--nav-height);
}

/* ============================================
   BUTTONS
   ============================================ */
.ves-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.ves-btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm), 0 0 0 0 color-mix(in oklch, var(--primary), transparent 60%);
}

.ves-btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 4px color-mix(in oklch, var(--primary), transparent 80%);
  transform: translateY(-2px);
}

.ves-btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.ves-btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.ves-btn-accent:hover {
  background: var(--accent-dark);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ves-btn-ghost {
  background: transparent;
  color: white;
  border-color: color-mix(in oklch, white, transparent 40%);
}

.ves-btn-ghost:hover {
  background: color-mix(in oklch, white, transparent 85%);
  color: white;
  border-color: white;
}

.ves-btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.ves-btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ves-hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.ves-hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.ves-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform 8s ease;
}

.ves-hero-visual:hover img {
  transform: scale(1.03);
}

.ves-hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--primary-dark), transparent 15%) 0%,
    color-mix(in oklch, var(--secondary), transparent 55%) 50%,
    color-mix(in oklch, var(--accent), transparent 70%) 100%
  );
  z-index: 1;
}

.ves-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) var(--space-xl);
  background: var(--surface);
  position: relative;
  z-index: 2;
}

.ves-hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48px;
  width: 96px;
  background: var(--surface);
  border-radius: 50%;
  z-index: -1;
  box-shadow: var(--shadow-lg);
}

.ves-hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.ves-hero-overline::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.ves-hero-title {
  margin-bottom: var(--space-md);
}

.ves-hero-title .ves-accent-word {
  color: var(--primary);
  display: block;
}

.ves-hero-desc {
  margin-bottom: var(--space-lg);
  max-width: 460px;
}

.ves-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.ves-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-light);
  margin-bottom: var(--space-sm);
}

/* ============================================
   SECTIONS
   ============================================ */
.ves-section {
  padding: var(--space-3xl) 0;
}

.ves-section-sm {
  padding: var(--space-2xl) 0;
}

.ves-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.ves-container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.ves-section-header {
  margin-bottom: var(--space-2xl);
}

.ves-section-header.ves-centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ves-section-header .ves-label {
  display: block;
  margin-bottom: var(--space-xs);
}

.ves-section-header h2 {
  margin-bottom: var(--space-sm);
}

.ves-section-header p {
  max-width: 560px;
}

.ves-section-header.ves-centered p {
  margin: 0 auto;
}

/* ============================================
   ANGLED SECTION DIVIDERS
   ============================================ */
.ves-angled-top {
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
  margin-top: -4%;
  padding-top: calc(var(--space-3xl) + 4%);
}

.ves-angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: calc(var(--space-3xl) + 4%);
}

.ves-angled-both {
  clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0 100%);
  margin-top: -3%;
  padding-top: calc(var(--space-3xl) + 3%);
  padding-bottom: calc(var(--space-3xl) + 3%);
}

/* ============================================
   BACKGROUND VARIANTS
   ============================================ */
.ves-bg-surface { background-color: var(--surface); }
.ves-bg-warm { background-color: var(--surface-warm); }
.ves-bg-mid { background-color: var(--surface-mid); }
.ves-bg-deep { background-color: var(--surface-deep); }

.ves-bg-primary {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    color-mix(in oklch, var(--primary), var(--secondary) 30%) 100%
  );
}

.ves-bg-gradient-warm {
  background: linear-gradient(
    160deg,
    var(--surface-warm) 0%,
    color-mix(in oklch, var(--accent-xlight), var(--surface) 60%) 50%,
    var(--surface-mid) 100%
  );
}

/* ============================================
   CARDS
   ============================================ */
.ves-card {
  background: color-mix(in oklch, white, var(--surface) 20%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.ves-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.ves-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.ves-card:hover .ves-card-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}

.ves-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.ves-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ves-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ves-card:hover .ves-card-accent {
  opacity: 1;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.ves-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.ves-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ves-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.ves-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.ves-split.ves-split-reverse {
  direction: rtl;
}

.ves-split.ves-split-reverse > * {
  direction: ltr;
}

.ves-split-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ves-split-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ves-split-visual:hover img {
  transform: scale(1.04);
}

.ves-split-content {
  padding: var(--space-md) 0;
}

.ves-split-content h2 {
  margin-bottom: var(--space-md);
}

.ves-split-content p {
  margin-bottom: var(--space-md);
}

/* ============================================
   CTA SPLIT SECTION
   ============================================ */
.ves-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.ves-cta-split-text h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.ves-cta-split-text p {
  color: color-mix(in oklch, white, transparent 25%);
}

.ves-cta-split-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.ves-cta-split-action p {
  font-size: 0.88rem;
  color: color-mix(in oklch, white, transparent 30%);
}

/* ============================================
   TOPIC MODULES
   ============================================ */
.ves-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.ves-topic-card {
  background: color-mix(in oklch, white, var(--surface) 15%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.ves-topic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.ves-topic-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.ves-topic-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.ves-topic-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.ves-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.ves-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent-light));
  border-radius: 2px;
}

.ves-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  position: relative;
}

.ves-step-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: white;
  border: 2px solid var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.ves-step-content {
  padding-top: 8px;
}

.ves-step-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.ves-step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   INFO BOX (for legal pages)
   ============================================ */
.ves-info-aside {
  background: var(--primary-xlight);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-md);
  margin: var(--space-md) 0;
}

.ves-info-aside strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ves-info-aside p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.ves-highlight-term {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--accent-light);
}

/* ============================================
   LEGAL PAGE STRUCTURE
   ============================================ */
.ves-legal-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: var(--space-2xl) 0;
  text-align: center;
}

.ves-legal-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.ves-legal-hero p {
  color: color-mix(in oklch, white, transparent 30%);
  margin-top: var(--space-xs);
}

.ves-legal-body {
  padding: var(--space-2xl) 0;
}

.ves-legal-body h2 {
  font-size: 1.35rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.ves-legal-body h3 {
  font-size: 1.1rem;
  margin-top: var(--space-md);
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ves-legal-body p {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.ves-legal-body ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.ves-legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.ves-form-wizard {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.ves-form-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.ves-step-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.ves-step-dot.ves-active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.ves-step-connector {
  height: 2px;
  width: 60px;
  background: var(--border-light);
  transition: background var(--transition-base);
}

.ves-step-connector.ves-done {
  background: var(--accent-light);
}

.ves-form-step {
  display: none;
  animation: fadeSlideIn 0.3s ease forwards;
}

.ves-form-step.ves-active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.ves-form-group {
  margin-bottom: var(--space-md);
}

.ves-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.ves-form-group input,
.ves-form-group select,
.ves-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: color-mix(in oklch, var(--surface), white 50%);
  transition: all var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}

.ves-form-group input:focus,
.ves-form-group select:focus,
.ves-form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 85%);
}

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

.ves-form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.ves-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%232D5016' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.ves-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.ves-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-md);
}

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

.ves-form-check label {
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.ves-form-check label a {
  color: var(--primary);
  text-decoration: underline;
}

.ves-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.ves-form-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.ves-form-step-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}


.iti, #phone {
  width: 100%;
}

.iti {
  display: block;
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.ves-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.ves-contact-info h2 {
  margin-bottom: var(--space-md);
}

.ves-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.ves-contact-detail:last-child {
  border-bottom: none;
}

.ves-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.ves-contact-detail:hover .ves-contact-icon {
  background: var(--primary);
  color: white;
}

.ves-contact-detail-text {
  flex: 1;
}

.ves-contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ves-contact-detail-text a,
.ves-contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.ves-contact-detail-text a:hover {
  color: var(--primary);
}

.ves-map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
  border: 1px solid var(--border-light);
}

.ves-map-container iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.ves-thanks-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 45%,
    color-mix(in oklch, var(--primary), var(--accent) 35%) 100%
  );
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.ves-thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.ves-thanks-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in oklch, white, transparent 80%);
  border: 2px solid color-mix(in oklch, white, transparent 60%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto var(--space-md);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 color-mix(in oklch, white, transparent 70%); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 12px color-mix(in oklch, white, transparent 95%); }
}

.ves-thanks-hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

.ves-thanks-hero p {
  color: color-mix(in oklch, white, transparent 20%);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.ves-thanks-next {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.ves-thanks-next h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.ves-thanks-next p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CAROUSEL (Splide overrides)
   ============================================ */
.splide__track {
  border-radius: var(--radius-lg);
}

.splide__pagination__page {
  background: var(--border);
  transition: all var(--transition-base);
}

.splide__pagination__page.is-active {
  background: var(--primary);
  transform: scale(1.25);
}

.splide__arrow {
  background: white;
  box-shadow: var(--shadow-md);
  opacity: 1;
  transition: all var(--transition-base);
}

.splide__arrow:hover {
  background: var(--primary);
}

.splide__arrow svg {
  fill: var(--primary);
  transition: fill var(--transition-base);
}

.splide__arrow:hover svg {
  fill: white;
}

.ves-module-slide {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

.ves-module-slide:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.ves-module-slide-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.ves-module-slide h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ves-module-slide p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================
   GEOGRAPHIC COVERAGE
   ============================================ */
.ves-coverage-hero {
  background: linear-gradient(160deg, var(--surface-warm) 0%, var(--surface-mid) 100%);
  padding: var(--space-2xl) 0;
}

.ves-region-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

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

.ves-region-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.ves-region-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ves-region-header h3 {
  font-size: 1.05rem;
}

.ves-region-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ves-region-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ves-region-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* ============================================
   ORIGIN PAGE
   ============================================ */
.ves-timeline {
  position: relative;
  padding-left: 40px;
}

.ves-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-light));
}

.ves-timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.ves-timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: var(--radius-full);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-xs);
}

.ves-timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ves-timeline-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.ves-timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ============================================
   STAT BOXES
   ============================================ */
.ves-stat-box {
  background: var(--primary-xlight);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.ves-stat-box:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.ves-stat-box:hover .ves-stat-label,
.ves-stat-box:hover .ves-stat-desc {
  color: color-mix(in oklch, white, transparent 20%);
}

.ves-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  transition: color var(--transition-base);
}

.ves-stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

/* ============================================
   FOOTER
   ============================================ */
.ves-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface), white 30%);
  padding: 18px 0;
}

.ves-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ves-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.ves-footer-logo img,
.ves-footer-logo svg {
  height: 26px;
  width: auto;
  opacity: 0.7;
}

.ves-footer-logo-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}

.ves-footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ves-footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.ves-footer-link:hover {
  color: var(--primary);
}

.ves-footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   NOTICE BADGE
   ============================================ */
.ves-notice {
  background: var(--accent-xlight);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.ves-notice i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   IMAGE WITH GRAIN OVERLAY
   ============================================ */
.ves-img-grain {
  position: relative;
  overflow: hidden;
}

.ves-img-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.ves-page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 55%,
    color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%
  );
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.ves-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.ves-page-hero-content {
  position: relative;
  z-index: 1;
}

.ves-page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-sm);
}

.ves-page-hero p {
  color: color-mix(in oklch, white, transparent 25%);
  font-size: 1.05rem;
  max-width: 580px;
}

.ves-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: var(--space-sm);
}

.ves-breadcrumb a {
  color: color-mix(in oklch, white, transparent 30%);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.ves-breadcrumb a:hover {
  color: white;
}

.ves-breadcrumb-sep {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ves-text-center { text-align: center; }
.ves-text-right { text-align: right; }
.ves-mb-sm { margin-bottom: var(--space-sm); }
.ves-mb-md { margin-bottom: var(--space-md); }
.ves-mb-lg { margin-bottom: var(--space-lg); }
.ves-mb-xl { margin-bottom: var(--space-xl); }
.ves-mt-sm { margin-top: var(--space-sm); }
.ves-mt-md { margin-top: var(--space-md); }
.ves-mt-lg { margin-top: var(--space-lg); }

.ves-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-lg) 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .ves-nav-links {
    gap: var(--space-sm);
  }
  .ves-hero-content {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (max-width: 960px) {
  .ves-nav-links,
  .ves-nav-cta {
    display: none;
  }

  .ves-hamburger {
    display: flex;
  }

  .ves-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ves-hero-visual {
    height: 45vh;
    order: -1;
  }

  .ves-hero-content {
    padding: var(--space-xl) var(--space-lg);
    order: 1;
  }

  .ves-hero-content::before {
    display: none;
  }

  .ves-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ves-split.ves-split-reverse {
    direction: ltr;
  }

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

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

  .ves-cta-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .ves-cta-split-action {
    align-items: center;
  }

  .ves-contact-grid {
    grid-template-columns: 1fr;
  }

  .ves-topic-grid {
    grid-template-columns: 1fr;
  }

  .ves-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .ves-nav-inner {
    padding: 0 var(--space-md);
  }

  .ves-container {
    padding: 0 var(--space-md);
  }

  .ves-grid-2 {
    grid-template-columns: 1fr;
  }

  .ves-grid-3 {
    grid-template-columns: 1fr;
  }

  .ves-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

  .ves-form-wizard {
    padding: var(--space-lg) var(--space-md);
  }

  .ves-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ves-footer-links {
    gap: var(--space-sm);
    justify-content: center;
  }

  .ves-angled-top,
  .ves-angled-bottom,
  .ves-angled-both {
    clip-path: none;
    margin-top: 0;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .ves-steps::before {
    left: 18px;
  }

  .ves-timeline {
    padding-left: 28px;
  }
}

@media (max-width: 380px) {
  .ves-grid-4 {
    grid-template-columns: 1fr;
  }
}