/**
 * Visionexperrt — App Stylesheet
 * Nature Calm Palette | Vanilla CSS | Mobile-First Responsive
 */

/* ==================================================
   Design Tokens
   ================================================== */
:root {
  /* Nature Calm Palette */
  --vex-deep-green: #1a4731;
  --vex-deep-green-light: #235240;
  --vex-muted-sage: #7a9e7e;
  --vex-warm-beige: #c4b5a0;
  --vex-soft-sand: #e8e0d4;
  --vex-off-white: #f6f4f0;
  --vex-pure-white: #ffffff;
  --vex-charcoal: #2c2c2c;
  --vex-text-primary: #1f2920;
  --vex-text-secondary: #4a554b;
  --vex-text-muted: #7a857b;

  /* Semantic mappings */
  --vex-bg-body: var(--vex-off-white);
  --vex-bg-surface: var(--vex-pure-white);
  --vex-bg-hero: var(--vex-deep-green);
  --vex-bg-sand: var(--vex-soft-sand);
  --vex-bg-beige: var(--vex-warm-beige);

  --vex-text-on-dark: var(--vex-off-white);
  --vex-text-on-light: var(--vex-text-primary);

  --vex-border-subtle: rgba(26, 71, 49, 0.12);
  --vex-border-medium: rgba(26, 71, 49, 0.25);

  /* Typography */
  --vex-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --vex-font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;

  /* Spacing scale (base 4px) */
  --vex-space-1: 0.25rem;
  --vex-space-2: 0.5rem;
  --vex-space-3: 0.75rem;
  --vex-space-4: 1rem;
  --vex-space-5: 1.25rem;
  --vex-space-6: 1.5rem;
  --vex-space-8: 2rem;
  --vex-space-10: 2.5rem;
  --vex-space-12: 3rem;
  --vex-space-16: 4rem;
  --vex-space-20: 5rem;
  --vex-space-24: 6rem;

  /* Border radius */
  --vex-radius-sm: 0.375rem;
  --vex-radius-md: 0.625rem;
  --vex-radius-lg: 1rem;
  --vex-radius-pill: 9999px;

  /* Shadows */
  --vex-shadow-sm: 0 1px 2px rgba(26, 71, 49, 0.08);
  --vex-shadow-md: 0 4px 12px rgba(26, 71, 49, 0.10);
  --vex-shadow-lg: 0 12px 32px rgba(26, 71, 49, 0.14);

  /* Transitions */
  --vex-transition-fast: 150ms ease;
  --vex-transition-base: 250ms ease;
  --vex-transition-slow: 350ms ease;

  /* Container */
  --vex-container-max: 72rem;
  --vex-container-padding: var(--vex-space-4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vex-font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--vex-text-on-light);
  background-color: var(--vex-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--vex-deep-green);
  text-decoration: none;
  transition: color var(--vex-transition-fast);
}

a:hover, a:focus-visible {
  color: var(--vex-deep-green-light);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--vex-muted-sage);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

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

/* ==================================================
   Typography
   ================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vex-font-sans);
  font-weight: 600;
  line-height: 1.25;
  color: var(--vex-text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

.vex-serif {
  font-family: var(--vex-font-serif);
  font-weight: 400;
  line-height: 1.75;
}

p {
  margin-bottom: var(--vex-space-4);
}

/* ==================================================
   Layout
   ================================================== */
.vex-container {
  width: 100%;
  max-width: var(--vex-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--vex-container-padding);
  padding-right: var(--vex-container-padding);
}

.vex-section {
  padding-top: var(--vex-space-16);
  padding-bottom: var(--vex-space-16);
}

.vex-section--compact {
  padding-top: var(--vex-space-10);
  padding-bottom: var(--vex-space-10);
}

.vex-section--sand {
  background-color: var(--vex-bg-sand);
}

.vex-section--green {
  background-color: var(--vex-deep-green);
  color: var(--vex-text-on-dark);
}

.vex-section--green h1,
.vex-section--green h2,
.vex-section--green h3,
.vex-section--green h4 {
  color: var(--vex-text-on-dark);
}

.vex-section--green a {
  color: var(--vex-soft-sand);
}

.vex-grid {
  display: grid;
  gap: var(--vex-space-6);
}

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

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

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

/* ==================================================
   Buttons
   ================================================== */
.vex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vex-space-2);
  padding: var(--vex-space-3) var(--vex-space-6);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--vex-radius-pill);
  text-decoration: none;
  transition: all var(--vex-transition-fast);
  cursor: pointer;
}

.vex-btn--primary {
  background-color: var(--vex-deep-green);
  color: var(--vex-off-white);
  border: 1.5px solid var(--vex-deep-green);
}

.vex-btn--primary:hover,
.vex-btn--primary:focus-visible {
  background-color: var(--vex-deep-green-light);
  border-color: var(--vex-deep-green-light);
  color: var(--vex-off-white);
  text-decoration: none;
}

.vex-btn--outline {
  background-color: transparent;
  color: var(--vex-deep-green);
  border: 1.5px solid var(--vex-deep-green);
}

.vex-btn--outline:hover,
.vex-btn--outline:focus-visible {
  background-color: var(--vex-deep-green);
  color: var(--vex-off-white);
  text-decoration: none;
}

.vex-btn--small {
  padding: var(--vex-space-2) var(--vex-space-4);
  font-size: 0.875rem;
}

/* ==================================================
   Top Bar
   ================================================== */
.vex-topbar {
  background-color: var(--vex-charcoal);
  color: var(--vex-off-white);
  font-size: 0.8125rem;
  padding-top: var(--vex-space-2);
  padding-bottom: var(--vex-space-2);
}

.vex-topbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vex-space-2);
  text-align: center;
}

.vex-topbar-left {
  display: flex;
  align-items: center;
  gap: var(--vex-space-3);
}

.vex-topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.5rem;
  padding: 0 var(--vex-space-2);
  background-color: #c0392b;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--vex-radius-sm);
}

.vex-topbar-notice {
  opacity: 0.85;
}

.vex-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--vex-space-4);
}

.vex-topbar-link {
  color: var(--vex-off-white);
  opacity: 0.8;
  font-size: 0.8125rem;
}

.vex-topbar-link:hover,
.vex-topbar-link:focus-visible {
  color: var(--vex-off-white);
  opacity: 1;
  text-decoration: underline;
}

/* ==================================================
   Header
   ================================================== */
.vex-header {
  background-color: var(--vex-pure-white);
  border-bottom: 1px solid var(--vex-border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}

.vex-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: var(--vex-space-4);
}

.vex-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vex-logo-img {
  height: 2rem;
  width: auto;
}

.vex-main-nav {
  display: flex;
  align-items: center;
}

.vex-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  border-radius: var(--vex-radius-sm);
}

.vex-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--vex-text-primary);
  border-radius: 2px;
  transition: transform var(--vex-transition-fast), opacity var(--vex-transition-fast);
}

.vex-nav-toggle[aria-expanded="true"] .vex-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vex-nav-toggle[aria-expanded="true"] .vex-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.vex-nav-toggle[aria-expanded="true"] .vex-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vex-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--vex-pure-white);
  border-bottom: 1px solid var(--vex-border-subtle);
  padding: var(--vex-space-4);
  box-shadow: var(--vex-shadow-md);
}

.vex-nav-menu.is-open {
  display: block;
}

.vex-nav-menu li {
  border-bottom: 1px solid var(--vex-border-subtle);
}

.vex-nav-menu li:last-child {
  border-bottom: none;
}

.vex-nav-link {
  display: block;
  padding: var(--vex-space-3) 0;
  color: var(--vex-text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.vex-nav-link--active {
  color: var(--vex-deep-green);
}

.vex-nav-link--highlight {
  color: #8b3a3a;
}

/* ==================================================
   Pills Navigation
   ================================================== */
.vex-pills-nav {
  background-color: var(--vex-bg-sand);
  padding-top: var(--vex-space-3);
  padding-bottom: var(--vex-space-3);
  border-bottom: 1px solid var(--vex-border-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vex-pills-list {
  display: flex;
  gap: var(--vex-space-2);
  flex-wrap: nowrap;
}

.vex-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--vex-space-2) var(--vex-space-4);
  background-color: var(--vex-pure-white);
  color: var(--vex-text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--vex-radius-pill);
  border: 1px solid var(--vex-border-subtle);
  white-space: nowrap;
  transition: all var(--vex-transition-fast);
}

.vex-pill:hover,
.vex-pill:focus-visible {
  background-color: var(--vex-deep-green);
  color: var(--vex-off-white);
  border-color: var(--vex-deep-green);
  text-decoration: none;
}

/* ==================================================
   Hero
   ================================================== */
.vex-hero {
  background-color: var(--vex-deep-green);
  color: var(--vex-text-on-dark);
  padding-top: var(--vex-space-16);
  padding-bottom: var(--vex-space-16);
  position: relative;
  overflow: hidden;
}

.vex-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,71,49,0.95) 0%, rgba(35,82,64,0.90) 100%);
  pointer-events: none;
}

.vex-hero-inner {
  position: relative;
  z-index: 1;
}

.vex-hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--vex-space-2);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vex-muted-sage);
  margin-bottom: var(--vex-space-4);
}

.vex-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vex-text-on-dark);
  margin-bottom: var(--vex-space-6);
}

.vex-hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--vex-soft-sand);
  margin-bottom: var(--vex-space-8);
}

.vex-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vex-space-4);
}

.vex-hero .vex-btn--outline {
  border-color: var(--vex-off-white);
  color: var(--vex-off-white);
}

.vex-hero .vex-btn--outline:hover,
.vex-hero .vex-btn--outline:focus-visible {
  background-color: var(--vex-off-white);
  color: var(--vex-deep-green);
}

/* Category Showcase */
.vex-hero-tiles {
  margin-top: var(--vex-space-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vex-space-4);
}

.vex-hero-tile {
  background-color: rgba(26, 71, 49, 0.4);
  border: 2px solid rgba(255,255,255,0.50);
  border-radius: var(--vex-radius-lg);
  padding: var(--vex-space-6);
  transition: all var(--vex-transition-base);
  backdrop-filter: blur(10px);
}

.vex-hero-tile:hover {
  background-color: rgba(26, 71, 49, 0.6);
  border-color: rgba(255,255,255,0.80);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.vex-hero-tile-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vex-off-white);
  margin-bottom: var(--vex-space-2);
}

.vex-hero-tile-text {
  font-size: 0.9375rem;
  color: var(--vex-soft-sand);
  line-height: 1.6;
}

/* ==================================================
   Trust Indicators
   ================================================== */
.vex-trust {
  background-color: var(--vex-bg-sand);
  padding-top: var(--vex-space-10);
  padding-bottom: var(--vex-space-10);
  border-bottom: 1px solid var(--vex-border-subtle);
}

.vex-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--vex-space-6);
}

.vex-trust-item {
  display: flex;
  align-items: center;
  gap: var(--vex-space-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vex-text-secondary);
}

.vex-trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--vex-deep-green);
  flex-shrink: 0;
}

/* ==================================================
   Editorial Sections
   ================================================== */
.vex-section-header {
  max-width: 60ch;
  margin-bottom: var(--vex-space-10);
}

.vex-section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--vex-space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vex-muted-sage);
  margin-bottom: var(--vex-space-3);
}

.vex-section-title {
  margin-bottom: var(--vex-space-4);
}

.vex-section-intro {
  font-size: 1.0625rem;
  color: var(--vex-text-secondary);
  line-height: 1.7;
}

.vex-editorial-text {
  font-family: var(--vex-font-serif);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--vex-text-primary);
}

.vex-editorial-text p {
  margin-bottom: var(--vex-space-5);
}

/* ==================================================
   Cards (Platform Cards)
   ================================================== */
.vex-card {
  background-color: var(--vex-pure-white);
  border: 1px solid var(--vex-border-subtle);
  border-radius: var(--vex-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--vex-transition-base), transform var(--vex-transition-base);
}

.vex-card:hover {
  box-shadow: var(--vex-shadow-md);
  transform: translateY(-2px);
}

.vex-card-media {
  position: relative;
  background-color: var(--vex-bg-sand);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vex-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vex-card-body {
  padding: var(--vex-space-6);
}

.vex-card-compliance {
  display: inline-flex;
  align-items: center;
  gap: var(--vex-space-2);
  padding: var(--vex-space-2) var(--vex-space-3);
  background-color: var(--vex-bg-sand);
  border: 1px solid var(--vex-border-subtle);
  border-radius: var(--vex-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vex-text-secondary);
  margin-bottom: var(--vex-space-4);
}

.vex-card-compliance-label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vex-card-compliance-id {
  font-family: var(--vex-font-mono, monospace);
  color: var(--vex-deep-green);
}

.vex-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--vex-space-3);
}

.vex-card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--vex-text-secondary);
}

/* ==================================================
   FAQ Accordion
   ================================================== */
.vex-faq-item {
  border-bottom: 1px solid var(--vex-border-subtle);
}

.vex-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vex-space-4);
  width: 100%;
  padding: var(--vex-space-5) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--vex-text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.vex-faq-question:hover {
  color: var(--vex-deep-green);
}

.vex-faq-question-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--vex-muted-sage);
  flex-shrink: 0;
  transition: transform var(--vex-transition-base);
}

.vex-faq-item.is-open .vex-faq-question-icon {
  transform: rotate(180deg);
}

.vex-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--vex-transition-slow), padding var(--vex-transition-slow);
}

.vex-faq-item.is-open .vex-faq-answer {
  max-height: 500px;
  padding-bottom: var(--vex-space-5);
}

.vex-faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vex-text-secondary);
  margin-bottom: var(--vex-space-3);
}

/* ==================================================
   CTA Blocks
   ================================================== */
.vex-cta {
  background-color: var(--vex-bg-sand);
  border: 1px solid var(--vex-border-subtle);
  border-radius: var(--vex-radius-lg);
  padding: var(--vex-space-10);
  text-align: center;
}

.vex-cta-title {
  margin-bottom: var(--vex-space-3);
}

.vex-cta-text {
  color: var(--vex-text-secondary);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--vex-space-6);
}

/* ==================================================
   Age Gate
   ================================================== */
.vex-agegate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vex-space-4);
}

.vex-agegate[hidden] {
  display: none;
}

.vex-agegate-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 71, 49, 0.85);
  backdrop-filter: blur(6px);
}

.vex-agegate-panel {
  position: relative;
  background-color: var(--vex-pure-white);
  border-radius: var(--vex-radius-lg);
  box-shadow: var(--vex-shadow-lg);
  max-width: 28rem;
  width: 100%;
  overflow: hidden;
}

.vex-agegate-content {
  padding: var(--vex-space-8);
  text-align: center;
}

.vex-agegate-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--vex-space-4);
}

.vex-agegate-text {
  color: var(--vex-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--vex-space-6);
}

.vex-agegate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--vex-space-3);
  margin-bottom: var(--vex-space-4);
}

.vex-agegate-disclaimer {
  font-size: 0.8125rem;
  color: var(--vex-text-muted);
}

/* ==================================================
   Cookie Banner
   ================================================== */
.vex-cookiebanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--vex-charcoal);
  color: var(--vex-off-white);
  padding-top: var(--vex-space-4);
  padding-bottom: var(--vex-space-4);
  transform: translateY(100%);
  transition: transform var(--vex-transition-base);
}

.vex-cookiebanner.is-visible {
  transform: translateY(0);
}

.vex-cookiebanner-inner {
  display: flex;
  flex-direction: column;
  gap: var(--vex-space-4);
  align-items: center;
  text-align: center;
}

.vex-cookiebanner-text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
}

.vex-cookiebanner-text a {
  color: var(--vex-muted-sage);
  text-decoration: underline;
}

.vex-cookiebanner-actions {
  display: flex;
  gap: var(--vex-space-3);
  flex-shrink: 0;
}

.vex-cookiebanner .vex-btn--primary {
  background-color: var(--vex-muted-sage);
  border-color: var(--vex-muted-sage);
  color: var(--vex-deep-green);
}

.vex-cookiebanner .vex-btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--vex-off-white);
}

/* ==================================================
   Footer
   ================================================== */
.vex-footer {
  background-color: var(--vex-charcoal);
  color: var(--vex-off-white);
  padding-top: var(--vex-space-16);
  padding-bottom: var(--vex-space-8);
}

.vex-footer a {
  color: var(--vex-off-white);
  opacity: 0.8;
}

.vex-footer a:hover,
.vex-footer a:focus-visible {
  opacity: 1;
  color: var(--vex-muted-sage);
}

.vex-footer-trust {
  margin-bottom: var(--vex-space-12);
  padding-bottom: var(--vex-space-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vex-footer-trust-title {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vex-warm-beige);
  margin-bottom: var(--vex-space-6);
  text-align: center;
}

.vex-footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--vex-space-6);
}

.vex-footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vex-space-3);
  background-color: rgba(255,255,255,0.06);
  border-radius: var(--vex-radius-md);
  transition: background-color var(--vex-transition-fast);
}

.vex-footer-logo-link:hover {
  background-color: rgba(255,255,255,0.12);
}

.vex-footer-logo-img {
  max-height: 2.5rem;
  width: auto;
  opacity: 0.85;
  filter: grayscale(0.3);
  transition: opacity var(--vex-transition-fast), filter var(--vex-transition-fast);
}

.vex-footer-logo-link:hover .vex-footer-logo-img {
  opacity: 1;
  filter: grayscale(0);
}

.vex-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vex-space-10);
  margin-bottom: var(--vex-space-12);
}

.vex-footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vex-warm-beige);
  margin-bottom: var(--vex-space-4);
}

.vex-footer-list li {
  margin-bottom: var(--vex-space-3);
}

.vex-footer-list a {
  font-size: 0.9375rem;
}

.vex-footer-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.8;
}

.vex-footer-disclaimer {
  padding-top: var(--vex-space-8);
  padding-bottom: var(--vex-space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin-bottom: var(--vex-space-8);
}

.vex-footer-disclaimer-text {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: var(--vex-space-2);
}

.vex-footer-disclaimer--small {
  font-size: 0.8125rem;
  opacity: 0.6;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--vex-space-4);
}

.vex-footer-bottom {
  text-align: center;
}

.vex-footer-copyright {
  font-size: 0.8125rem;
  opacity: 0.5;
}

.vex-footer-text-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--vex-space-3) var(--vex-space-4);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--vex-radius-md);
  color: var(--vex-warm-beige);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ==================================================
   Responsible Information Section
   ================================================== */
.vex-responsible-info {
  background-color: var(--vex-bg-sand);
  padding-top: var(--vex-space-16);
  padding-bottom: var(--vex-space-16);
  border-top: 1px solid var(--vex-border-subtle);
}

.vex-responsible-info-header {
  max-width: 60ch;
  margin-bottom: var(--vex-space-10);
}

.vex-responsible-info-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--vex-text-primary);
  margin-bottom: var(--vex-space-4);
}

.vex-responsible-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vex-space-8);
  margin-bottom: var(--vex-space-12);
}

.vex-responsible-info-block {
  background-color: var(--vex-pure-white);
  border: 1px solid var(--vex-border-subtle);
  border-radius: var(--vex-radius-lg);
  padding: var(--vex-space-6);
}

.vex-responsible-info-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vex-deep-green);
  margin-bottom: var(--vex-space-3);
}

.vex-responsible-info-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vex-text-secondary);
}

.vex-responsible-info-text p {
  margin-bottom: 0;
}

.vex-responsible-info-resources {
  background-color: var(--vex-deep-green);
  border-radius: var(--vex-radius-lg);
  padding: var(--vex-space-8);
}

.vex-responsible-info-resources-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--vex-text-on-dark);
  margin-bottom: var(--vex-space-5);
}

.vex-responsible-info-resources-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vex-space-3);
}

.vex-responsible-info-resource-link {
  display: block;
  padding: var(--vex-space-3) var(--vex-space-4);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--vex-radius-md);
  color: var(--vex-soft-sand);
  font-size: 0.9375rem;
  transition: background-color var(--vex-transition-fast);
}

.vex-responsible-info-resource-link:hover,
.vex-responsible-info-resource-link:focus-visible {
  background-color: rgba(255,255,255,0.12);
  color: var(--vex-pure-white);
  text-decoration: none;
}

.vex-responsible-info-resource-link strong {
  color: var(--vex-warm-beige);
}

/* ==================================================
   Card Button
   ================================================== */
.vex-card-btn {
  margin-top: var(--vex-space-4);
}

/* ==================================================
   Page Specific — Legal / FAQ Pages
   ================================================== */
.vex-page-header {
  background-color: var(--vex-deep-green);
  color: var(--vex-text-on-dark);
  padding-top: var(--vex-space-16);
  padding-bottom: var(--vex-space-10);
}

.vex-page-header-title {
  color: var(--vex-text-on-dark);
  margin-bottom: var(--vex-space-3);
}

.vex-page-header-text {
  color: var(--vex-soft-sand);
  max-width: 55ch;
}

.vex-legal-section {
  padding-top: var(--vex-space-10);
  padding-bottom: var(--vex-space-16);
}

.vex-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--vex-space-2);
  color: var(--vex-text-secondary);
}

.vex-contact-form input,
.vex-contact-form textarea {
  width: 100%;
  padding: var(--vex-space-3) var(--vex-space-4);
  font-size: 1rem;
  font-family: inherit;
  color: var(--vex-text-primary);
  background-color: var(--vex-pure-white);
  border: 1.5px solid var(--vex-border-medium);
  border-radius: var(--vex-radius-md);
  transition: border-color var(--vex-transition-fast), box-shadow var(--vex-transition-fast);
}

.vex-contact-form input:focus,
.vex-contact-form textarea:focus {
  outline: none;
  border-color: var(--vex-deep-green);
  box-shadow: 0 0 0 3px rgba(26, 71, 49, 0.10);
}

.vex-contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.vex-form-group {
  margin-bottom: var(--vex-space-5);
}

/* ==================================================
   Guide / Redirect Pages
   ================================================== */
.vex-redirect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--vex-space-8);
}

.vex-redirect-inner {
  max-width: 32rem;
}

.vex-redirect-title {
  margin-bottom: var(--vex-space-4);
}

.vex-redirect-text {
  color: var(--vex-text-secondary);
  margin-bottom: var(--vex-space-6);
}

.vex-redirect-meta {
  font-size: 0.8125rem;
  color: var(--vex-text-muted);
}

.vex-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--vex-border-subtle);
  border-top-color: var(--vex-deep-green);
  border-radius: 50%;
  animation: vex-spin 1s linear infinite;
  margin: 0 auto var(--vex-space-6);
}

@keyframes vex-spin {
  to { transform: rotate(360deg); }
}

/* ==================================================
   Utilities
   ================================================== */
.vex-text-center { text-align: center; }
.vex-text-left { text-align: left; }
.vex-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==================================================
   Responsive (Tablet & Desktop)
   ================================================== */
@media (min-width: 640px) {
  :root {
    --vex-container-padding: var(--vex-space-6);
  }

  .vex-agegate-actions {
    flex-direction: row;
    justify-content: center;
  }

  .vex-cookiebanner-inner {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 768px) {
  :root {
    --vex-container-padding: var(--vex-space-8);
  }

  .vex-topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .vex-nav-toggle {
    display: none;
  }

  .vex-nav-menu {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: var(--vex-space-6);
  }

  .vex-nav-menu li {
    border-bottom: none;
  }

  .vex-nav-link {
    padding: var(--vex-space-2) 0;
    font-size: 0.875rem;
  }

  .vex-hero-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .vex-responsible-info-resources-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .vex-section {
    padding-top: var(--vex-space-20);
    padding-bottom: var(--vex-space-20);
  }
}

@media (min-width: 1024px) {
  .vex-hero-tiles {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

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

@media (min-width: 1280px) {
  .vex-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================================================
   Reduced Motion
   ================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .vex-spinner {
    animation: none;
    border-top-color: var(--vex-border-subtle);
  }
}
