/* =============================================
   VE Clean Theme — ValorEasy
   Design: PriceHubble-inspired + Verde ValorEasy
   ============================================= */

/* ---- Variables ---- */
:root {
  /* Butoane */
  --ve-btn:           #3d7a33;
  --ve-btn-hover:     #2f6128;

  /* Linkuri */
  --ve-link:          #3d7a33;
  --ve-link-hover:    #2f6128;

  /* Compatibilitate internă (preset secțiuni verzi, formulare) */
  --ve-green:         var(--ve-btn);
  --ve-green-dark:    var(--ve-btn-hover);
  --ve-green-bg:      #f0f7ee;

  /* Text + fundal hero (override din admin) */
  --ve-ink:           #0f2127;
  --ve-hero-dark-bg:  #0f2127;
  --ve-hero-light-bg: #f4f6f8;

  /* Secțiuni — fixe, nu din admin */
  --ve-section-dark-bg: #0f2127;
  --ve-gray-bg:       #f4f6f8;

  /* Neutrals */
  --ve-ink-80:        #2d4048;
  --ve-muted:         #5b6b72;
  --ve-border:        #dde4e6;
  --ve-white:         #ffffff;

  /* Header menu (override din admin) */
  --ve-nav-on-dark:   #ffffff;
  --ve-nav-on-light:  #0f2127;

  /* Typography */
  --ve-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ve-radius:      10px;
  --ve-radius-lg:   16px;
  --ve-shadow:      0 2px 12px rgba(0,0,0,.08);
  --ve-shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --ve-transition:  0.2s ease;

  /* Layout */
  --ve-max-width:   1200px;
  --ve-section-py:  80px;
}

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

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

body {
  font-family: var(--ve-font);
  color: var(--ve-ink);
  background: var(--ve-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ve-link); text-decoration: none; transition: color var(--ve-transition); }
a:hover { color: var(--ve-link-hover); }
ul { list-style: none; }

.no-scroll { overflow: hidden; }

body.is-mobile-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.ve-header.is-menu-open {
  background: var(--ve-section-dark-bg);
  box-shadow: none;
}

.ve-header.is-menu-open .ve-logo--dark { display: none; }
.ve-header.is-menu-open .ve-logo--white { display: inline-block; }
.ve-header.is-menu-open .ve-nav__link { color: var(--ve-white); }
.ve-header.is-menu-open .ve-header__burger span { background: var(--ve-white); }
.ve-header.is-menu-open .ve-btn--primary {
  background: rgba(255,255,255,.15);
  color: var(--ve-white);
  border-color: rgba(255,255,255,.5);
}

/* ---- Container ---- */
.ve-container {
  width: 100%;
  max-width: var(--ve-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header / Nav ---- */
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ve-white);
  box-shadow: 0 1px 0 var(--ve-border);
  transition: background var(--ve-transition), box-shadow var(--ve-transition);
}

/* Logo: dark implicit, white pe header transparent */
.ve-logo--white { display: none; }
.ve-header.is-transparent .ve-logo--dark { display: none; }
.ve-header.is-transparent .ve-logo--white { display: inline-block; }

/* Header transparent — adaugat de JS pe home cand nu e scrollat */
.ve-header.is-transparent {
  background: transparent;
  box-shadow: none;
}

.ve-header.is-transparent .ve-nav__link { color: var(--ve-nav-on-dark); }

.ve-header.is-transparent .ve-header__burger span { background: var(--ve-white); }

.ve-header.is-transparent .ve-btn--primary {
  background: rgba(255,255,255,.15);
  color: var(--ve-white);
  border-color: rgba(255,255,255,.5);
}

/* Hero fundal deschis (fără imagine): meniul rămâne lizibil la scroll top */
.ve-header-over-light .ve-header.is-transparent .ve-logo--dark { display: inline-block; }
.ve-header-over-light .ve-header.is-transparent .ve-logo--white { display: none; }
.ve-header-over-light .ve-header.is-transparent .ve-nav__link { color: var(--ve-nav-on-light); }
.ve-header-over-light .ve-header.is-transparent .ve-nav__item.is-active .ve-nav__link {
  background: var(--ve-gray-bg);
  color: var(--ve-link);
}
.ve-header-over-light .ve-header.is-transparent .ve-header__burger span { background: var(--ve-ink); }
.ve-header-over-light .ve-header.is-transparent .ve-btn--primary {
  background: var(--ve-btn);
  color: var(--ve-white);
  border-color: var(--ve-btn);
}
.ve-header-over-light .ve-header.is-transparent .ve-btn--primary:hover {
  background: var(--ve-btn-hover);
  border-color: var(--ve-btn-hover);
}

.ve-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
  max-width: var(--ve-max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.ve-logo { height: 28px; width: auto; }

.ve-header__nav { flex: 1; }

.ve-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ve-nav__item { position: relative; }

.ve-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ve-ink);
  border-radius: 6px;
  transition: background var(--ve-transition), color var(--ve-transition);
  white-space: nowrap;
}

.ve-nav__item.is-active > .ve-nav__link {
  background: var(--ve-gray-bg);
  color: var(--ve-link);
}

@media (hover: hover) and (min-width: 769px) {
  .ve-header__nav .ve-nav__link:hover {
    background: var(--ve-gray-bg);
    color: var(--ve-link);
  }

  .ve-header.is-transparent .ve-nav__link:hover,
  .ve-header.is-transparent .ve-nav__item.is-active .ve-nav__link {
    background: rgba(255,255,255,.15);
    color: var(--ve-white);
  }

  .ve-header-over-light .ve-header.is-transparent .ve-nav__link:hover,
  .ve-header-over-light .ve-header.is-transparent .ve-nav__item.is-active .ve-nav__link {
    background: var(--ve-gray-bg);
    color: var(--ve-link);
  }

  .ve-nav__dropdown li a:hover,
  .ve-nav__dropdown li.is-active a {
    background: var(--ve-green-bg);
    color: var(--ve-link);
  }
}

/* Pe header transparent (fără hover pe touch) */
.ve-header.is-transparent .ve-nav__item.is-active .ve-nav__link {
  background: rgba(255,255,255,.15);
  color: var(--ve-white);
}

.ve-nav__arrow { font-size: 0.7em; opacity: 0.7; }

.ve-nav__link--toggle { cursor: default; user-select: none; }

/* Dropdown — click-based */
.ve-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  width: max-content;
  background: var(--ve-white);
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius);
  box-shadow: var(--ve-shadow-lg);
  padding: 6px 8px 8px;
  z-index: 100;
}

.ve-header__nav .ve-nav__item.has-children.is-open .ve-nav__dropdown { display: block; }

/* Arrow rotit cand e deschis */
.ve-nav__item.has-children.is-open .ve-nav__arrow { transform: rotate(180deg); }
.ve-nav__arrow { display: inline-block; transition: transform 0.15s; }

.ve-nav__dropdown li a,
.ve-nav__dropdown li .ve-nav__dropdown-link {
  display: block;
  padding: 9px 12px;
  font-size: 0.9rem;
  color: var(--ve-ink-80);
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--ve-transition), color var(--ve-transition);
}

.ve-nav__dropdown li.is-active a {
  background: var(--ve-green-bg);
  color: var(--ve-link);
}

.ve-nav__dropdown-link--soon {
  color: var(--ve-ink-80);
  opacity: 0.55;
  cursor: default;
}

/* Mega-meniu: coloane (doar dacă itemul are grupuri în admin) */
.ve-nav__item.has-mega {
  position: static;
}

.ve-nav__dropdown--mega {
  left: 0;
  right: 0;
  width: auto;
  min-width: 0;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 28px;
  padding: 20px 24px 22px;
  white-space: normal;
}

.ve-header__nav .ve-nav__item.has-mega.is-open .ve-nav__dropdown--mega {
  display: grid;
}

.ve-nav__mega-title {
  margin: 0 0 8px;
  padding: 0 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ve-ink-50, #6b7c82);
}

.ve-nav__mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-nav__dropdown--mega li a,
.ve-nav__dropdown--mega li .ve-nav__dropdown-link {
  white-space: normal;
  line-height: 1.35;
}

/* ---- Buttons ---- */
.ve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--ve-font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--ve-transition), color var(--ve-transition), border-color var(--ve-transition), box-shadow var(--ve-transition);
  white-space: nowrap;
}

.ve-btn--primary {
  background: var(--ve-btn);
  color: var(--ve-white);
  border-color: var(--ve-btn);
}
.ve-btn--primary:hover {
  background: var(--ve-btn-hover);
  border-color: var(--ve-btn-hover);
  color: var(--ve-white);
  box-shadow: 0 4px 16px rgba(61,122,51,.3);
}

.ve-btn--outline-white {
  background: transparent;
  color: var(--ve-white);
  border-color: rgba(255,255,255,.6);
}
.ve-btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  color: var(--ve-white);
  border-color: var(--ve-white);
}

/* Buton contur verde — pentru fund deschis */
.ve-btn--outline-green {
  background: transparent;
  color: var(--ve-btn);
  border-color: var(--ve-btn);
}
.ve-btn--outline-green:hover {
  background: var(--ve-btn);
  color: var(--ve-white);
  border-color: var(--ve-btn);
}

.ve-btn--white {
  background: var(--ve-white);
  color: var(--ve-btn);
  border-color: var(--ve-white);
}
.ve-btn--white:hover {
  background: var(--ve-green-bg);
  color: var(--ve-btn-hover);
}

.ve-btn--ghost-white {
  background: transparent;
  color: var(--ve-white);
  border-color: transparent;
  text-decoration: underline;
}
.ve-btn--ghost-white:hover { opacity: 0.8; color: var(--ve-white); }

/* ---- Burger / Mobile nav ---- */
.ve-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.ve-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ve-white);
  border-radius: 2px;
  transition: transform var(--ve-transition), opacity var(--ve-transition);
}

.ve-header__burger span { background: var(--ve-ink); }

.ve-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ve-section-dark-bg);
  overflow-y: auto;
  padding: 88px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.ve-mobile-nav.is-open { transform: translateX(0); }

.ve-mobile-nav .ve-nav__list--mobile {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ve-mobile-nav .ve-nav__link,
.ve-mobile-nav .ve-nav__item.is-active > .ve-nav__link,
.ve-mobile-nav .ve-nav__item.is-active .ve-nav__link,
.ve-mobile-nav .ve-nav__link:hover,
.ve-mobile-nav .ve-nav__link:focus,
.ve-mobile-nav .ve-nav__link:active {
  font-size: 1.125rem;
  color: var(--ve-white);
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  width: 100%;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.ve-mobile-nav .ve-nav__link--toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ve-mobile-nav .ve-nav__dropdown,
.ve-mobile-nav .ve-nav__dropdown--mega {
  position: static;
  display: none;
  width: auto;
  min-width: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 0 0 16px;
  grid-template-columns: none;
}

.ve-mobile-nav .ve-nav__item.has-children.is-open > .ve-nav__dropdown,
.ve-mobile-nav .ve-nav__item.has-children.is-open > .ve-nav__dropdown--mega {
  display: block;
}

.ve-mobile-nav .ve-nav__dropdown li a:hover,
.ve-mobile-nav .ve-nav__dropdown li a:active {
  background: transparent;
  color: rgba(255,255,255,.7);
}

.ve-mobile-nav .ve-nav__dropdown li a,
.ve-mobile-nav .ve-nav__dropdown li .ve-nav__dropdown-link {
  color: rgba(255,255,255,.7);
  padding: 10px 0;
  border-radius: 0;
  white-space: normal;
}

.ve-mobile-nav .ve-nav__dropdown-link--soon {
  opacity: 0.45;
}

.ve-mobile-nav .ve-nav__mega-title {
  color: rgba(255,255,255,.45);
  padding: 12px 0 4px;
}

.ve-mobile-nav .ve-nav__mega-col + .ve-nav__mega-col {
  margin-top: 4px;
}

.ve-mobile-nav__cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ---- Main layout ---- */
/* padding-top: 0 — header-ul e fix si transparent, hero-ul incepe de la y=0 */
.ve-main { padding-top: 0; }

/* ---- Section helpers ---- */
.ve-section {
  padding: var(--ve-section-py) 0;
}

.ve-section--white { background: var(--ve-white); }
.ve-section--gray  { background: var(--ve-gray-bg); }
.ve-section--dark  { background: var(--ve-section-dark-bg); }
.ve-section--green { background: var(--ve-green); }

.ve-section--dark .ve-section__title,
.ve-section--dark .ve-section__subtitle,
.ve-section--green .ve-section__title,
.ve-section--green .ve-section__subtitle { color: var(--ve-white); }

.ve-section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ve-link);
  margin-bottom: 12px;
}

.ve-section--dark .ve-section__label,
.ve-section--green .ve-section__label {
  color: var(--ve-link);
}

.ve-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ve-ink);
  margin-bottom: 16px;
}

.ve-section__subtitle {
  font-size: 1.0625rem;
  color: var(--ve-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center.ve-section__subtitle { margin-left: auto; margin-right: auto; }

/* ---- Hero ---- */
.ve-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ve-hero-dark-bg);
  background-size: cover;
  background-position: center;
}

/* Pe home hero-ul are 520px */
.ve-home .ve-hero {
  min-height: 520px;
}

/* Hero mic pentru pagini interioare (resurse, articole, default etc.) */
.ve-hero--sm {
  min-height: 280px;
}
/* Padding-top pe inner pages (hero mic) — 72px header + 24px natural */
.ve-hero--sm .ve-hero__inner {
  padding-top: 96px;
  padding-bottom: 32px;
}

.ve-hero--light {
  background: var(--ve-hero-light-bg);
}

.ve-hero--light .ve-hero__title,
.ve-hero--light .ve-hero__subtitle,
.ve-hero--light .ve-hero__label { color: var(--ve-ink); }

/* Imagine + overlay: text deschis chiar dacă admin are „fundal deschis” */
.ve-hero--has-image .ve-hero__title { color: var(--ve-white); }
.ve-hero--has-image .ve-hero__subtitle { color: rgba(255,255,255,.80); }
.ve-hero--has-image .ve-hero__label { color: var(--ve-link); }

.ve-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,33,39,.80) 0%, rgba(15,33,39,.55) 100%);
}

.ve-hero__inner {
  position: relative;
  z-index: 1;
  /* 72px pentru header fix transparent + 56px natural */
  padding-top: 128px;
  padding-bottom: 64px;
  max-width: 920px;
}

.ve-hero__inner--center {
  text-align: center;
  margin-inline: auto;
}

.ve-hero__inner--center .ve-hero__subtitle {
  margin-inline: auto;
}

.ve-hero__inner--center .ve-hero__buttons {
  justify-content: center;
}

.ve-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ve-link);
  margin-bottom: 16px;
}

.ve-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ve-white);
  margin-bottom: 20px;
}

.ve-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.ve-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Page hero (default pages) ---- */
.ve-page-hero {
  background: var(--ve-hero-dark-bg);
  padding: 64px 0 56px;
}

.ve-page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ve-white);
  line-height: 1.2;
}

.ve-page-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  margin-top: 12px;
  max-width: 560px;
}

/* ---- Cards 4-grid ---- */
.ve-cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ve-card {
  background: var(--ve-white);
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ve-transition), transform var(--ve-transition);
}

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

/* Cards on gray/dark backgrounds */
.ve-section--gray .ve-card { background: var(--ve-white); }
.ve-section--dark .ve-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.ve-card__image { aspect-ratio: 16/9; overflow: hidden; }
.ve-card__image img { width: 100%; height: 100%; object-fit: cover; }

.ve-card__icon {
  padding: 28px 24px 0;
  font-size: 2rem;
  line-height: 1;
}

.ve-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ve-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ve-section--dark .ve-card__title { color: var(--ve-white); }

.ve-card__desc {
  font-size: 0.9rem;
  color: var(--ve-muted);
  line-height: 1.65;
  flex: 1;
}

.ve-section--dark .ve-card__desc { color: rgba(255,255,255,.65); }

.ve-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ve-link);
}

.ve-card__link:hover { color: var(--ve-link-hover); gap: 8px; }

/* ---- Card Media (image + text) ---- */
.ve-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ve-media--image-left { direction: rtl; }
.ve-media--image-left > * { direction: ltr; }

.ve-media__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--ve-ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ve-section--dark .ve-media__title { color: var(--ve-white); }

.ve-media__desc {
  font-size: 1rem;
  color: var(--ve-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.ve-section--dark .ve-media__desc { color: rgba(255,255,255,.7); }

.ve-media__stores {
  margin: -8px 0 24px;
  font-size: 1rem;
  color: var(--ve-muted);
}
.ve-media__stores a {
  color: var(--ve-link);
  text-decoration: underline;
  font-weight: 600;
}
.ve-media__stores a:hover { color: var(--ve-link-hover); }

.ve-media__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.ve-media__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ve-ink-80);
}

.ve-section--dark .ve-media__feature-item { color: rgba(255,255,255,.8); }

.ve-media__feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--ve-btn);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}

.ve-media__image {
  border-radius: var(--ve-radius-lg);
  overflow: hidden;
  box-shadow: var(--ve-shadow-lg);
}

.ve-media__image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---- Features grid ---- */
.ve-features {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.ve-features--col-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ve-features--col-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ve-features--col-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.ve-feature { padding: 8px 0; }

.ve-feature__icon {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1;
  color: var(--ve-link);
}

.ve-feature__icon--emoji { font-size: 2.25rem; }

.ve-feature__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin-bottom: 8px;
}

.ve-section--dark .ve-feature__title { color: var(--ve-white); }

.ve-feature__desc {
  font-size: 0.9rem;
  color: var(--ve-muted);
  line-height: 1.65;
}

.ve-section--dark .ve-feature__desc { color: rgba(255,255,255,.65); }

/* ---- CTA Band ---- */
.ve-cta-band {
  padding: 72px 0;
}

.ve-cta-band--green { background: var(--ve-btn); }
.ve-cta-band--dark  { background: var(--ve-section-dark-bg); }
.ve-cta-band--white { background: var(--ve-white); border-top: 1px solid var(--ve-border); border-bottom: 1px solid var(--ve-border); }

.ve-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ve-cta-band__title {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ve-white);
  margin-bottom: 8px;
}

.ve-cta-band--white .ve-cta-band__title { color: var(--ve-ink); }

.ve-cta-band__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.80);
  max-width: 520px;
  line-height: 1.65;
}

.ve-cta-band--white .ve-cta-band__subtitle { color: var(--ve-muted); }

.ve-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Stats ---- */
.ve-stats {
  padding: var(--ve-section-py) 0;
}

.ve-stats--white { background: var(--ve-white); }
.ve-stats--gray  { background: var(--ve-gray-bg); }
.ve-stats--dark  { background: var(--ve-section-dark-bg); }
.ve-stats--green { background: var(--ve-green); }

.ve-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
  margin-top: 48px;
}

.ve-stat { display: flex; flex-direction: column; gap: 6px; }

.ve-stat__value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ve-link);
  line-height: 1;
}

.ve-stats--white .ve-stat__value,
.ve-stats--gray .ve-stat__value { color: var(--ve-link); }

.ve-stat__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ve-white);
}

.ve-stats--white .ve-stat__label,
.ve-stats--gray .ve-stat__label { color: var(--ve-ink); }

.ve-stat__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
}

.ve-stats--white .ve-stat__desc,
.ve-stats--gray .ve-stat__desc { color: var(--ve-muted); }

/* ---- Text section ---- */
.ve-text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ve-text-section--center { text-align: center; }
.ve-text-section--center .ve-section__subtitle { margin-left: auto; margin-right: auto; }
.ve-text-section .ve-btn { margin-top: 28px; }
.ve-text-section:has(.ve-media),
.ve-text-section:has(.ve-app-screenshots) {
  max-width: none;
}

/* ---- App inspection page ---- */
.ve-intro-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ve-ink-80);
  max-width: 920px;
  margin: 0 auto 2rem;
}

.ve-app-download {
  margin-top: 2rem;
}

.ve-app-download__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 1.25rem;
}

.ve-app-download__badges img {
  display: block;
  height: auto;
}

.ve-app-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ve-app-screenshots img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: contain;
  object-position: top center;
  border-radius: var(--ve-radius);
  background: var(--ve-gray-bg);
}

.ve-pdf-download__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.ve-pdf-download__title {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ve-ink);
  margin-bottom: 1.5rem;
}

.ve-pdf-download__success {
  background: var(--ve-btn);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--ve-radius);
  margin-bottom: 1rem;
  font-weight: 600;
}

.ve-pdf-download__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.ve-pdf-download__input {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ve-border, #dde3e8);
  border-radius: var(--ve-radius);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .ve-app-screenshots {
    grid-template-columns: repeat(2, 1fr);
  }
  .ve-app-screenshots img {
    min-height: 320px;
  }
}

@media (max-width: 540px) {
  .ve-app-screenshots {
    grid-template-columns: 1fr;
  }
}

/* ---- Prose (rich text) ---- */
.ve-prose { max-width: 100%; }
.ve-prose h1, .ve-prose h2, .ve-prose h3, .ve-prose h4 {
  font-weight: 700; color: var(--ve-ink); margin: 1.5em 0 0.5em; line-height: 1.3;
}
.ve-prose p  { margin-bottom: 1em; color: var(--ve-ink-80); font-size: 1rem; line-height: 1.75; }
.ve-prose ul, .ve-prose ol { margin-bottom: 1em; padding-left: 1.5em; }
.ve-prose ul { list-style: disc; }
.ve-prose ol { list-style: decimal; }
.ve-prose li { margin-bottom: 0.4em; color: var(--ve-ink-80); }
.ve-prose strong { font-weight: 700; }
.ve-prose a { color: var(--ve-link); text-decoration: underline; }
.ve-prose a:hover { color: var(--ve-link-hover); }
.ve-prose img { border-radius: var(--ve-radius); margin: 1.5em 0; }
.ve-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.95rem; }
.ve-prose th, .ve-prose td { padding: 0.65em 1em; text-align: left; border-bottom: 1px solid var(--ve-border, #e5e7eb); }
.ve-prose th { font-weight: 700; color: var(--ve-ink); background: rgba(0,0,0,.03); }
.ve-prose pre { background: var(--ve-ink); color: #e5e7eb; padding: 1rem 1.25rem; border-radius: var(--ve-radius); overflow-x: auto; margin: 1.5em 0; font-size: 0.85rem; line-height: 1.6; }
.ve-prose code { font-family: ui-monospace, monospace; font-size: 0.9em; }

/* ---- Footer ---- */
.ve-footer {
  background: var(--ve-section-dark-bg);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.ve-footer__inner { max-width: var(--ve-max-width); margin: 0 auto; padding: 0 24px; }

.ve-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.ve-footer__brand .ve-footer__logo-link { display: inline-block; margin-bottom: 16px; }

.ve-footer__tagline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ve-white);
  margin-bottom: 8px;
}

.ve-footer__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.ve-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.ve-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--ve-white);
  transition: border-color var(--ve-transition), background var(--ve-transition), transform var(--ve-transition);
}

.ve-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ve-footer__social-link:hover {
  color: var(--ve-white);
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.ve-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}

.ve-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ve-footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--ve-transition);
}
.ve-footer__links a:hover { color: var(--ve-white); }

.ve-footer__apps { display: flex; flex-direction: column; gap: 12px; }
.ve-footer__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.ve-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  padding: 10px 16px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #fff;
  transition: transform var(--ve-transition), border-color var(--ve-transition);
}
.ve-store-badge:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.ve-store-badge__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.ve-store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ve-store-badge__small {
  font-size: 0.65rem;
  opacity: 0.85;
}
.ve-store-badge__big {
  font-size: 1rem;
  font-weight: 700;
}
.ve-store-badge--google { background: #1a1a1a; }

.ve-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
}

/* ---- Pricing ---- */
.ve-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ve-pricing__card {
  background: var(--ve-white);
  border: 1.5px solid var(--ve-gray);
  border-radius: var(--ve-radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--ve-transition);
}
.ve-pricing__card:hover {
  box-shadow: var(--ve-shadow-lg);
}
.ve-pricing__card--featured {
  border-color: var(--ve-green);
  box-shadow: 0 0 0 2px var(--ve-green), var(--ve-shadow-lg);
}

.ve-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ve-btn);
  color: var(--ve-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ve-pricing__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ve-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.ve-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.ve-pricing__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ve-link);
}
.ve-pricing__period {
  font-size: 0.95rem;
  color: var(--ve-muted);
}

.ve-pricing__desc {
  font-size: 0.9rem;
  color: var(--ve-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.ve-pricing__users {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ve-ink);
  border-top: 1px solid var(--ve-gray);
  padding-top: 12px;
  margin-bottom: 20px;
}

.ve-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ve-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ve-ink);
}
.ve-pricing__feature--disabled {
  color: var(--ve-muted);
}
.ve-pricing__feature-icon {
  color: var(--ve-link);
  font-weight: 700;
  min-width: 16px;
  flex-shrink: 0;
}
.ve-pricing__feature--disabled .ve-pricing__feature-icon {
  color: var(--ve-muted);
}

.ve-pricing__footer {
  margin-top: auto;
}
.ve-pricing__footer .ve-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.ve-pricing__notes {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ve-gray);
}
.ve-pricing__notes p {
  font-size: 0.85rem;
  color: var(--ve-muted);
  margin-bottom: 6px;
}

/* ---- Team Members ---- */
.ve-team__member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ve-border);
  align-items: start;
}
.ve-team__member:last-child { border-bottom: none; }

.ve-team__photo-col { text-align: center; }

.ve-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ve-gray);
}
.ve-team__photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--ve-gray-bg);
  margin: 0 auto;
}

.ve-team__identity { margin-top: 16px; }
.ve-team__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin: 0 0 4px;
}
.ve-team__role {
  font-size: 0.9rem;
  color: var(--ve-link);
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

.ve-team__bio { margin-bottom: 20px; }

.ve-team__quote {
  border-left: 3px solid var(--ve-link);
  padding: 12px 20px;
  margin: 0;
  background: var(--ve-green-bg, #eef6ec);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--ve-ink-80);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .ve-team__member { grid-template-columns: 1fr; gap: 24px; }
  .ve-team__photo-col { display: flex; align-items: center; gap: 20px; text-align: left; }
  .ve-team__identity { margin-top: 0; }
}

/* ---- Newsletter ---- */
.ve-newsletter {
  background: var(--ve-green-bg, #eef6ec);
}
.ve-newsletter__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ve-newsletter__text {
  flex: 1 1 260px;
  padding-top: 6px;
}
.ve-newsletter__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin: 0 0 6px;
}
.ve-newsletter__subtitle {
  font-size: 1rem;
  color: var(--ve-muted);
  margin: 0;
}
.ve-newsletter__form-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ve-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.ve-newsletter__form .ve-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
/* Toast sub câmp+buton — funcționează și cu HTML vechi (toast în form) */
.ve-newsletter__form > [data-success],
.ve-newsletter__form > [data-error],
.ve-newsletter__form-wrap > [data-success],
.ve-newsletter__form-wrap > [data-error],
.ve-newsletter__toast {
  flex: 0 0 100%;
  width: 100%;
  order: 99;
  box-sizing: border-box;
}
.ve-newsletter__toast {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.ve-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--ve-border);
  border-radius: 8px;
  font-family: var(--ve-font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.ve-newsletter__input:focus { border-color: var(--ve-green); }

/* ---- Contact Form ---- */
.ve-contact-form {
  max-width: 560px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ve-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ve-form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ve-ink);
}
.ve-form-row input,
.ve-form-row textarea,
.ve-form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--ve-border);
  border-radius: 8px;
  font-family: var(--ve-font);
  font-size: 0.95rem;
  color: var(--ve-ink);
  background: var(--ve-white);
  transition: border-color 0.15s;
  outline: none;
}
.ve-form-row input:focus,
.ve-form-row textarea:focus {
  border-color: var(--ve-green);
}
.ve-form-row textarea { resize: vertical; }
.ve-form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--ve-border);
  border-radius: 8px;
  font-family: var(--ve-font);
  font-size: 0.95rem;
  color: var(--ve-ink);
  background: var(--ve-white);
  outline: none;
  cursor: pointer;
}
.ve-form-row select:focus { border-color: var(--ve-green); }

.ve-contact__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.ve-contact-form { margin-top: 0; max-width: none; }

.ve-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ve-ink);
}
.ve-form-check input { margin-top: 3px; flex-shrink: 0; }
.ve-form-check a { color: var(--ve-link); text-decoration: underline; }

.ve-contact__info {
  background: var(--ve-gray-bg);
  border-radius: var(--ve-radius-lg);
  padding: 28px;
}
.ve-contact__info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin: 0 0 16px;
}
.ve-contact__info p { margin: 0 0 10px; color: var(--ve-ink); }
.ve-contact__info a { color: var(--ve-link); }

.ve-toast {
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}
.ve-toast--success { background: var(--ve-green); }
.ve-toast--error { background: #dc3545; }

@media (max-width: 768px) {
  .ve-contact__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ve-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --ve-section-py: 56px; }

  .ve-header__nav, .ve-header__cta { display: none; }
  .ve-header__burger { display: flex; }
  .ve-mobile-nav { display: block; }

  body:has(.ve-mobile-nav.is-open) .ve-header {
    background: var(--ve-section-dark-bg);
    box-shadow: none;
  }
  body:has(.ve-mobile-nav.is-open) .ve-header .ve-logo--dark { display: none; }
  body:has(.ve-mobile-nav.is-open) .ve-header .ve-logo--white { display: inline-block; }
  body:has(.ve-mobile-nav.is-open) .ve-header__burger span { background: var(--ve-white); }

  .ve-hero { min-height: 480px; }
  .ve-hero__inner { max-width: 100%; }

  .ve-media {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ve-media--image-left { direction: ltr; }
  .ve-media--image-left .ve-media__image { order: -1; }

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

  .ve-cta-band__inner { flex-direction: column; text-align: center; }

  .ve-footer__top { grid-template-columns: 1fr; gap: 32px; }

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

@media (max-width: 480px) {
  .ve-hero__buttons { flex-direction: column; }
  .ve-stats__grid { grid-template-columns: 1fr; }
  .ve-features--col-3,
  .ve-features--col-4 { grid-template-columns: 1fr; }
}

/* ---- Workshop form ---- */
.ve-workshop__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.ve-workshop__grid--left .ve-workshop__form { order: -1; }
.ve-workshop__stack { max-width: 720px; margin: 0 auto; }

.ve-workshop__intro {
  padding-top: 8px;
}
.ve-workshop__intro h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ve-ink);
  margin-bottom: 1.25rem;
}
.ve-workshop__intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ve-ink-80);
  margin-bottom: 1rem;
}
.ve-workshop__intro ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 1rem 0 1.25rem;
}
.ve-workshop__intro li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
  color: var(--ve-ink-80);
}

.ve-workshop__form .workshop-form-container {
  background: var(--ve-white);
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius-lg);
  padding: 32px 36px;
  box-shadow: var(--ve-shadow);
}

.ve-workshop__form .workshop-form-container h3,
.ve-workshop__form .workshop-form-container .h2 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--ve-ink);
}

.ve-workshop__form .workshop-registration-form .form-group { margin-bottom: 20px; }

.ve-workshop__form .workshop-registration-form .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ve-ink);
  font-size: 0.95rem;
}

.ve-workshop__form .workshop-registration-form .radio { margin-bottom: 10px; }

.ve-workshop__form .workshop-registration-form .radio label {
  display: block;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius);
  transition: border-color var(--ve-transition), background var(--ve-transition);
}

.ve-workshop__form .workshop-registration-form .radio label:hover {
  border-color: var(--ve-link);
  background: var(--ve-green-bg);
}

.ve-workshop__form .workshop-registration-form .radio input[type="radio"] {
  margin: 0 10px 8px 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ve-green);
  vertical-align: middle;
}

.ve-workshop__form .workshop-registration-form .radio input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--ve-link-hover);
}

.ve-workshop__form .workshop-subtitle {
  font-size: 0.875rem;
  color: var(--ve-muted);
  margin-top: 6px;
  line-height: 1.45;
}

.ve-workshop__form .workshop-registration-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--ve-white);
  transition: border-color var(--ve-transition), box-shadow var(--ve-transition);
}

.ve-workshop__form .workshop-registration-form .form-control:focus {
  outline: none;
  border-color: var(--ve-green);
  box-shadow: 0 0 0 3px rgba(61, 122, 51, 0.15);
}

.ve-workshop__form .workshop-registration-form .checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  cursor: pointer;
  color: var(--ve-ink-80);
}

.ve-workshop__form .workshop-registration-form .checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ve-green);
}

.ve-workshop__form .workshop-registration-form .checkbox a {
  color: var(--ve-link);
  text-decoration: underline;
}

.ve-workshop__form .workshop-registration-form .btn,
.ve-workshop__form .workshop-registration-form .btn-primary,
.ve-workshop__form .workshop-registration-form .btn-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--ve-btn);
  color: #fff !important;
  border: none;
  border-radius: var(--ve-radius);
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--ve-transition);
}

.ve-workshop__form .workshop-registration-form .btn:hover,
.ve-workshop__form .workshop-registration-form .btn-primary:hover {
  background: var(--ve-green-dark);
}

.ve-workshop__form .form-messages { margin-top: 16px; }

.ve-workshop__form .alert {
  padding: 12px 16px;
  border-radius: var(--ve-radius);
  font-weight: 500;
  font-size: 0.9rem;
}

.ve-workshop__form .alert-success { background: #d4edda; color: #155724; }
.ve-workshop__form .alert-danger { background: #f8d7da; color: #721c24; }
.ve-workshop__form .d-none { display: none !important; }

@media (max-width: 768px) {
  .ve-workshop__grid { grid-template-columns: 1fr; gap: 36px; }
  .ve-workshop__grid--left .ve-workshop__form { order: 0; }
  .ve-workshop__form .workshop-form-container { padding: 24px; }
}

/* ---- Resources list ---- */
.ve-resources__filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 40px;
  max-width: 640px;
}
.ve-resources__empty {
  padding: 20px 24px;
  background: #fff8e6;
  border: 1px solid #f0d080;
  border-radius: 12px;
  color: var(--ve-ink);
  font-weight: 500;
}
.ve-resources__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ve-resource-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--ve-border, #e8e8e8);
}
.ve-resource-card:last-child { border-bottom: none; }
.ve-resource-card__media {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ve-resource-card__media img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.ve-resource-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin: 0 0 12px;
  line-height: 1.35;
}
.ve-resource-card__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  vertical-align: middle;
}
.ve-resource-card__desc {
  color: var(--ve-muted, #555);
  line-height: 1.6;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .ve-resources__filters { grid-template-columns: 1fr; }
  .ve-resource-card { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- Modal (download raport) ---- */
.ve-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ve-modal--open { display: flex; }
body.ve-modal-open { overflow: hidden; }
.ve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.ve-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}
.ve-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}
.ve-modal__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ve-ink);
}
.ve-modal__close {
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ve-muted, #666);
  padding: 0 4px;
}
.ve-modal__body { padding: 20px 24px; }
.ve-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 24px 24px;
  flex-wrap: wrap;
}
