/* ==========================================================================
   eVersum — refactor layer (accessibility + reusable CTA components)
   Visual identity unchanged: accent #35bfef, dark premium surfaces,
   existing typography inherited from style.css.
   ========================================================================== */

/* --- Accessible focus for every interactive element ---------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #35bfef !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}

/* Skip link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: #0e1015;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.skip-to-content:focus {
  left: 10px;
  top: 10px;
}

/* Language indicator (selector removed until translated routes exist) */
.lang-links .act-leng[aria-current] {
  color: #fff;
  cursor: default;
}

/* --- Reusable CTA band --------------------------------------------------- */
.ev-cta {
  position: relative;
  z-index: 5;
  background: #14171d;
  padding: 54px 0 58px;
}
.ev-cta__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 25px;
}
.ev-cta__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.ev-cta__text {
  color: #c8ccd4;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 26px;
  max-width: 640px;
}
.ev-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ev-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ev-btn i {
  font-size: 13px;
}
.ev-btn:hover,
.ev-btn:focus {
  color: #fff;
  border-color: #35bfef;
  background: #35bfef;
}
.ev-btn--primary {
  background: #35bfef;
  border-color: #35bfef;
  color: #0e1015;
}
.ev-btn--primary:hover,
.ev-btn--primary:focus {
  background: #1ea9db;
  border-color: #1ea9db;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .ev-cta {
    padding: 40px 0 42px;
  }
  .ev-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ev-btn {
    justify-content: center;
  }
}

/* --- Contrast corrections (tokens kept, values nudged to meet AA) -------- */
.footer-contacts li span,
.footer_text p,
.ev-cta__text {
  color: #c8ccd4;
}
.subcribe-form .enteremail::placeholder {
  color: #b7bcc5;
  opacity: 1;
}

/* Hero variant: CTA buttons directly under the homepage headline */
.ev-cta__actions--hero {
  margin-top: 28px;
}
.ev-cta__actions--hero .ev-btn {
  backdrop-filter: blur(2px);
}
