:root {
  --evrd-pa-bg: #06152d;
  --evrd-pa-bg-deep: #071b38;
  --evrd-pa-panel: rgba(7, 21, 45, 0.92);
  --evrd-pa-panel-2: rgba(10, 28, 58, 0.94);
  --evrd-pa-line: rgba(255, 255, 255, 0.10);
  --evrd-pa-text: #f8fbff;
  --evrd-pa-text-soft: rgba(255, 255, 255, 0.82);
  --evrd-pa-text-muted: rgba(255, 255, 255, 0.64);
  --evrd-pa-primary: #012f67;
  --evrd-pa-primary-bright: #3b82f6;
  --evrd-pa-accent: #dc1f26;
  --evrd-pa-accent-soft: #ff6b72;
  --evrd-pa-green: #4ade80;
  --evrd-pa-gold: #facc15;
  --evrd-pa-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --evrd-pa-radius: 22px;
  --evrd-pa-container: min(1240px, calc(100% - 32px));
}

body.evrd-public-app-lock {
  overflow: hidden;
}

.evrd-public-app {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--evrd-pa-bg) 0%, var(--evrd-pa-bg-deep) 100%);
  color: var(--evrd-pa-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.evrd-pa-container {
  width: var(--evrd-pa-container);
  margin-inline: auto;
}

.evrd-pa-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: clip;
  background: #06162b;
}

.evrd-pa-hero__media,
.evrd-pa-hero__overlay,
.evrd-pa-hero__shade,
.evrd-pa-hero__glow,
.evrd-pa-hero__body {
  position: absolute;
  inset: 0;
}

.evrd-pa-hero__media {
  pointer-events: none;
}

.evrd-pa-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.evrd-pa-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: saturate(.86) contrast(.94) brightness(.68);
}

.evrd-pa-hero__overlay {
  background:
    linear-gradient(180deg, rgba(4, 12, 28, .72) 0%, rgba(4, 18, 40, .44) 18%, rgba(4, 18, 40, .72) 100%),
    radial-gradient(920px 560px at 72% 8%, rgba(59, 130, 246, .12), transparent 48%);
}

.evrd-pa-hero__shade {
  background: linear-gradient(90deg, rgba(4, 16, 39, .90) 0%, rgba(4, 18, 40, .80) 24%, rgba(4, 18, 40, .42) 55%, rgba(4, 18, 40, .20) 100%);
}

.evrd-pa-hero__glow {
  background:
    radial-gradient(660px 400px at 14% 18%, rgba(220, 31, 38, .14), transparent 58%),
    radial-gradient(880px 560px at 86% 16%, rgba(59, 130, 246, .18), transparent 54%),
    radial-gradient(760px 460px at 20% 100%, rgba(2, 47, 103, .18), transparent 48%);
}

.evrd-pa-hero__particle {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  opacity: .7;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(96, 165, 250, .95), rgba(59, 130, 246, 0));
  box-shadow: 0 0 14px rgba(96, 165, 250, .24);
  animation: evrdPaParticle 7s linear infinite;
}

.evrd-pa-hero__particle--one {
  top: 22%;
  left: -10%;
  width: 180px;
  animation-duration: 8.2s;
}

.evrd-pa-hero__particle--two {
  top: 56%;
  left: -18%;
  width: 220px;
  animation-duration: 9s;
  animation-delay: 1.2s;
}

.evrd-pa-hero__particle--three {
  top: 74%;
  left: -14%;
  width: 160px;
  animation-duration: 7.2s;
  animation-delay: .6s;
}

@keyframes evrdPaParticle {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  12% {
    opacity: .85;
  }

  88% {
    opacity: .85;
  }

  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}

.evrd-pa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.evrd-pa-header.is-scrolled {
  padding: 10px 0;
  background: rgba(6, 20, 41, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.evrd-pa-header__inner,
.evrd-pa-header__actions,
.evrd-pa-brand,
.evrd-pa-brand__fallback,
.evrd-pa-featured,
.evrd-pa-group__head,
.evrd-pa-group__item,
.evrd-pa-stage__actions,
.evrd-pa-stage__checks,
.evrd-pa-check,
.evrd-pa-kpis,
.evrd-pa-kpi {
  display: flex;
  align-items: center;
}

.evrd-pa-header__inner {
  justify-content: space-between;
  gap: 20px;
}

.evrd-pa-brand {
  gap: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.evrd-pa-brand__logo {
  display: block;
  width: auto;
  max-width: 320px;
  height: 54px;
  object-fit: contain;
}

.evrd-pa-header.is-scrolled .evrd-pa-brand__logo--dark {
  display: block;
}

.evrd-pa-brand__logo--dark,
.evrd-pa-header.is-scrolled .evrd-pa-brand__logo--light {
  display: none;
}

.evrd-pa-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: .05em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.evrd-pa-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.evrd-pa-brand__text strong {
  font-size: 1rem;
  font-weight: 800;
}

.evrd-pa-brand__text small {
  color: #ff646c;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.evrd-pa-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.evrd-pa-header__nav a,
.evrd-pa-group__item,
.evrd-pa-featured,
.evrd-pa-quick__card,
.evrd-pa-btn,
.evrd-pa-chip {
  text-decoration: none;
}

.evrd-pa-header__nav a {
  color: rgba(255, 255, 255, .88);
  font-size: .95rem;
  font-weight: 700;
}

.evrd-pa-header__nav a:hover {
  color: #fff;
}

.evrd-public-app a:hover,
.evrd-public-app button:hover {
  color: inherit;
}

.evrd-pa-header__actions {
  gap: 10px;
}

.evrd-pa-chip,
.evrd-pa-menu-toggle,
.evrd-pa-drawer__close,
.evrd-pa-btn {
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.evrd-pa-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-size: .94rem;
  font-weight: 800;
}

.evrd-pa-chip--ghost,
.evrd-pa-btn--ghost {
  background: rgba(255, 255, 255, .07);
}

.evrd-pa-chip--accent,
.evrd-pa-btn--primary {
  background: linear-gradient(135deg, #ef373f, #d81d26);
  border-color: rgba(220, 31, 38, .52);
}

.evrd-pa-menu-toggle,
.evrd-pa-drawer__close {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.evrd-pa-menu-toggle {
  background: linear-gradient(180deg, rgba(48, 111, 255, .30), rgba(18, 53, 118, .82));
  border-color: rgba(124, 171, 255, .36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 24px rgba(3, 12, 28, .24);
}

.evrd-pa-menu-toggle,
.evrd-pa-drawer__close,
.evrd-pa-chip,
.evrd-pa-btn {
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.evrd-pa-menu-toggle:hover,
.evrd-pa-drawer__close:hover {
  transform: translateY(-3px);
}

.evrd-pa-menu-toggle:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 28px rgba(18, 53, 118, .34);
}

.evrd-pa-drawer__close,
.evrd-pa-btn--ghost {
  background: rgba(255, 255, 255, .06);
}

.evrd-pa-menu-toggle svg,
.evrd-pa-drawer__close svg,
.evrd-pa-btn svg,
.evrd-pa-check svg,
.evrd-pa-featured svg,
.evrd-pa-group__icon svg,
.evrd-pa-group__item-ico svg,
.evrd-pa-quick__icon svg,
.evrd-pa-kpi__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.evrd-pa-hero__body {
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 112px 0 56px;
}

.evrd-pa-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 168px);
  align-items: center;
  position: relative;
}

.evrd-pa-hero__content {
  max-width: min(1280px, 100%);
}

.evrd-pa-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .90);
  font-size: .92rem;
  font-weight: 700;
}

.evrd-pa-stage__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--evrd-pa-green);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .12);
  flex: 0 0 auto;
}

.evrd-pa-stage__title {
  margin: 24px 0 22px;
  color: #fff;
  font-size: clamp(3.4rem, 6.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.048em;
  max-width: 20.8ch;
  text-wrap: balance;
}

.evrd-pa-stage__title .evrd-pa-accent-blue {
  color: #33a1ff;
}

.evrd-pa-stage__title .evrd-pa-accent-red {
  color: #ff646c;
}

.evrd-pa-stage__text {
  margin: 0;
  max-width: 700px;
  color: var(--evrd-pa-text-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  line-height: 1.62;
}

.evrd-pa-stage__actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.evrd-pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 800;
}

.evrd-pa-chip:hover,
.evrd-pa-btn:hover {
  transform: translateX(3px);
}

.evrd-pa-chip span[data-lucide],
.evrd-pa-btn span[data-lucide] {
  transition: transform .22s ease;
}

.evrd-pa-chip:hover span[data-lucide],
.evrd-pa-btn:hover span[data-lucide] {
  transform: translateX(3px);
}

.evrd-pa-btn--video {
  min-width: 200px;
}

.evrd-pa-kpis {
  gap: 16px 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: max-content;
}

.evrd-pa-kpi {
  gap: 10px;
  min-height: 42px;
  color: rgba(255, 255, 255, .90);
  font-size: .96rem;
  font-weight: 700;
}

.evrd-pa-kpi__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.evrd-pa-kpi--green .evrd-pa-kpi__icon {
  color: var(--evrd-pa-green);
}

.evrd-pa-kpi--blue .evrd-pa-kpi__icon {
  color: #60a5fa;
}

.evrd-pa-kpi--gold .evrd-pa-kpi__icon {
  color: var(--evrd-pa-gold);
}

.evrd-pa-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  opacity: .9;
  z-index: 3;
}

.evrd-pa-scrollcue__mouse {
  position: relative;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
}

.evrd-pa-scrollcue__mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: evrdPaScrollDot 1.4s ease-in-out infinite;
}

.evrd-pa-scrollcue__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .72);
  animation: evrdPaArrowBounce 1.4s ease-in-out infinite;
}

@keyframes evrdPaScrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, -2px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@keyframes evrdPaArrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.evrd-pa-overlay {
  position: fixed;
  inset: 0;
  z-index: 74;
  background: rgba(5, 16, 36, .62);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
}

.evrd-pa-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 75;
  width: min(870px, calc(100vw - 24px));
  pointer-events: none;
  visibility: hidden;
}

.evrd-pa-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.evrd-pa-drawer__surface {
  margin-left: auto;
  width: 100%;
  height: 100%;
  padding: 18px 22px 24px;
  overflow: auto;
  background:
    radial-gradient(760px 460px at 100% 0%, rgba(59, 130, 246, .10), transparent 52%),
    linear-gradient(180deg, rgba(8, 30, 61, .985) 0%, rgba(5, 26, 58, .992) 52%, rgba(4, 24, 54, .996) 100%);
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .34);
  transform: translateX(100%);
  opacity: 0;
  will-change: transform, opacity;
}

.evrd-pa-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.evrd-pa-brand--drawer .evrd-pa-brand__logo {
  height: 40px;
  max-width: 300px;
}

.evrd-pa-brand--drawer .evrd-pa-brand__mark {
  min-width: 52px;
  height: 38px;
}

.evrd-pa-featured {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  color: #fff;
  margin-bottom: 20px;
}

.evrd-pa-featured__icon,
.evrd-pa-featured__action,
.evrd-pa-group__icon,
.evrd-pa-group__item-ico,
.evrd-pa-quick__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.evrd-pa-featured__icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px;
  background: rgba(220, 31, 38, .12);
  color: #ffd1d4;
}

.evrd-pa-featured__icon svg {
  width: 24px;
  height: 24px;
}

.evrd-pa-featured__action {
  transition: transform .22s ease;
}

.evrd-pa-featured:hover .evrd-pa-featured__action {
  transform: translateX(4px);
}

.evrd-pa-featured__body strong,
.evrd-pa-featured__body span {
  display: block;
}

.evrd-pa-featured__body strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.evrd-pa-featured__body span {
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
}

.evrd-pa-drawer__groups--catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

.evrd-pa-group--catalog {
  position: relative;
  min-width: 0;
}

.evrd-pa-group--catalog::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.evrd-pa-group__head--catalog {
  gap: 10px;
  margin-bottom: 12px;
}

.evrd-pa-group__head h3 {
  margin: 0;
  font-size: .97rem;
  line-height: 1.22;
  color: rgba(255, 255, 255, .96);
}

.evrd-pa-group__icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .94);
}

.evrd-pa-group__icon svg {
  width: 12px;
  height: 12px;
}

.evrd-pa-group__items--catalog {
  display: grid;
  gap: 7px;
  padding-left: 16px;
}

.evrd-pa-group__item--catalog {
  gap: 11px;
  min-height: 42px;
  padding: 0 8px;
  border-radius: 13px;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.evrd-pa-group__item--catalog:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.evrd-pa-group__item--catalog:hover .evrd-pa-group__item-body strong {
  color: #fff;
}

.evrd-pa-group__item-ico {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
  flex: 0 0 auto;
}

.evrd-pa-group__item-ico svg {
  width: 10px;
  height: 10px;
}

.evrd-pa-group__item-body strong {
  display: block;
  font-size: .84rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
}

.evrd-pa-quick {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.evrd-pa-quick__title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .64);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.evrd-pa-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.evrd-pa-quick__card {
  display: block;
  min-height: 130px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  color: #fff;
}

.evrd-pa-quick__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(82, 128, 255, .16);
  color: #80abff;
}

.evrd-pa-quick__icon svg {
  width: 16px;
  height: 16px;
}

.evrd-pa-quick__card strong,
.evrd-pa-quick__card small {
  display: block;
}

.evrd-pa-quick__card strong {
  margin-bottom: 8px;
  font-size: .94rem;
}

.evrd-pa-quick__card small {
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .evrd-pa-drawer {
    width: min(760px, calc(100vw - 18px));
  }

  .evrd-pa-drawer__groups--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evrd-pa-quick__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .evrd-pa-header__nav {
    display: none;
  }

  .evrd-pa-brand__logo {
    max-width: 270px;
    height: 46px;
  }

  .evrd-pa-stage__title {
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    max-width: 12.4ch;
  }
}

@media (max-width: 767px) {
  :root {
    --evrd-pa-container: min(100% - 24px, 1240px);
  }

  .evrd-pa-header {
    padding: 12px 0;
  }

  .evrd-pa-header.is-scrolled {
    padding: 10px 0;
  }

  .evrd-pa-header__inner {
    gap: 12px;
  }

  .evrd-pa-brand__logo {
    max-width: 220px;
    height: 40px;
  }

  .evrd-pa-brand__text strong {
    font-size: .9rem;
  }

  .evrd-pa-brand__text small {
    font-size: .66rem;
  }

  .evrd-pa-chip--ghost {
    display: none;
  }

  .evrd-pa-chip {
    min-height: 42px;
    padding: 0 14px;
    font-size: .86rem;
  }

  .evrd-pa-menu-toggle,
  .evrd-pa-drawer__close {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .evrd-pa-hero {
    min-height: 100svh;
  }

  .evrd-pa-hero__body {
    padding: 98px 0 26px;
    align-items: flex-end;
  }

  .evrd-pa-hero__grid {
    min-height: calc(100svh - 136px);
    align-items: center;
  }

  .evrd-pa-hero__content {
    max-width: 100%;
    text-align: center;
  }

  .evrd-pa-hero__shade {
    background: linear-gradient(180deg, rgba(4, 17, 40, .70) 0%, rgba(4, 18, 40, .80) 40%, rgba(4, 18, 40, .95) 100%);
  }

  .evrd-pa-stage__eyebrow {
    min-height: 34px;
    padding: 0 13px;
    font-size: .84rem;
    margin-inline: auto;
  }

  .evrd-pa-stage__title {
    margin: 16px auto 18px;
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.02;
    max-width: 9.2ch;
    text-wrap: pretty;
  }

  .evrd-pa-stage__text {
    font-size: 1rem;
    line-height: 1.58;
    max-width: 18ch;
    margin-inline: auto;
  }

  .evrd-pa-stage__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .evrd-pa-btn {
    width: min(100%, 320px);
    min-height: 52px;
  }

  .evrd-pa-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    justify-items: center;
    gap: 8px 16px;
    width: 100%;
    margin-top: 22px;
    padding-top: 18px;
  }

  .evrd-pa-kpi {
    min-height: 38px;
    font-size: .92rem;
    justify-content: center;
  }

  .evrd-pa-kpi:last-child {
    grid-column: 1 / -1;
  }

  .evrd-pa-scrollcue {
    position: static;
    transform: none;
    display: inline-flex;
    justify-self: start;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: .82rem;
  }

  .evrd-pa-scrollcue__mouse {
    display: none;
  }

  .evrd-pa-scrollcue__arrow {
    color: rgba(255, 255, 255, .82);
  }

  .evrd-pa-kpi__icon {
    width: 24px;
    height: 24px;
  }

  .evrd-pa-kpi__icon svg {
    width: 15px;
    height: 15px;
  }

  .evrd-pa-drawer {
    width: calc(100vw - 8px);
  }

  .evrd-pa-drawer__surface {
    padding: 14px 12px 20px;
  }

  .evrd-pa-drawer__groups--catalog,
  .evrd-pa-quick__grid {
    grid-template-columns: 1fr;
  }

  .evrd-pa-group--catalog::after {
    display: none;
  }

  .evrd-pa-group__items--catalog {
    padding-left: 0;
  }

  .evrd-pa-hero__particle--two,
  .evrd-pa-hero__particle--three {
    display: none;
  }
}

.evrd-public-app *:focus,
.evrd-public-app *:focus-visible,
.evrd-public-app a:focus,
.evrd-public-app button:focus,
.evrd-public-app img:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* Mobile drawer accordion refinements */
.evrd-pa-group__head {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.evrd-pa-group__head-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.evrd-pa-group__chevron {
  display: none;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .74);
  transition: transform .24s ease, color .24s ease, opacity .24s ease;
}

.evrd-pa-group.is-open .evrd-pa-group__chevron {
  transform: rotate(180deg);
  color: #60a5fa;
}

@media (max-width: 767px) {
  .evrd-pa-header__actions .evrd-pa-chip--accent {
    display: none;
  }

  .evrd-pa-group--catalog {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 14px;
    margin-top: 14px;
  }

  .evrd-pa-group--catalog:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }

  .evrd-pa-group__head--catalog {
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 0 6px 0 0;
    margin-bottom: 0;
    border-radius: 16px;
    transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
  }

  .evrd-pa-group__head--catalog .evrd-pa-group__head-main {
    gap: 12px;
  }

  .evrd-pa-group__head--catalog h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .evrd-pa-group__head--catalog .evrd-pa-group__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .evrd-pa-group.is-open .evrd-pa-group__head--catalog {
    background: rgba(59, 130, 246, .10);
    border: 1px solid rgba(96, 165, 250, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
    padding: 0 10px;
  }

  .evrd-pa-group__items--catalog {
    gap: 10px;
    padding: 10px 0 0 18px;
  }

  .evrd-pa-group__item--catalog {
    min-height: 36px;
    padding: 0;
    gap: 10px;
  }

  .evrd-pa-group__item-ico {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
  }

  .evrd-pa-group__item-ico svg {
    width: 10px;
    height: 10px;
  }

  .evrd-pa-group__item-body strong {
    font-size: .94rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
  }

  .evrd-pa-group.is-open .evrd-pa-group__item-body strong {
    color: rgba(255, 255, 255, .86);
  }
}


/* === Consolidated final overrides: desktop drawer + mobile hero === */

/* Keep hero content width from current working base */
.evrd-pa-hero__content {
  max-width: min(1280px, 100%);
}

/* Portal Docente card */
.evrd-pa-featured {
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.evrd-pa-featured__icon {
  width: 52px !important;
  height: 52px !important;
  padding: 10px !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .96) !important;
}

.evrd-pa-featured__icon svg {
  width: 22px;
  height: 22px;
}

.evrd-pa-featured__action {
  width: 46px !important;
  height: 46px !important;
  padding: 8px !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .94);
}

.evrd-pa-featured__action svg {
  width: 16px;
  height: 16px;
}

.evrd-pa-featured:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(239, 55, 63, .12), rgba(216, 29, 38, .06));
  border-color: rgba(239, 55, 63, .18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.evrd-pa-featured:hover .evrd-pa-featured__icon {
  background: rgba(239, 55, 63, .16) !important;
  border-color: rgba(239, 55, 63, .22);
  color: #fff !important;
}

.evrd-pa-featured:hover .evrd-pa-featured__action {
  background: rgba(239, 55, 63, .16);
  border-color: rgba(239, 55, 63, .22);
  color: #fff;
  transform: translateX(4px);
}

/* Desktop catalog icon treatment */
.evrd-pa-group__icon,
.evrd-pa-group__item-ico,
.evrd-pa-quick__icon {
  box-sizing: border-box;
}

.evrd-pa-group__icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .085);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .96);
}

.evrd-pa-group__icon svg {
  width: 18px;
  height: 18px;
}

.evrd-pa-group__item-ico {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .085);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .88);
}

.evrd-pa-group__item-ico svg {
  width: 14px;
  height: 14px;
}

.evrd-pa-group__items--catalog {
  gap: 8px;
  padding-left: 18px;
}

.evrd-pa-group__item--catalog {
  position: relative;
  min-height: 44px;
  padding: 4px 10px 4px 12px;
  border-radius: 14px;
  align-items: center;
}

.evrd-pa-group__item--catalog::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 2px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 55, 63, .98), rgba(216, 29, 38, .90));
  transform: translateY(-50%);
  opacity: 0;
  transition: height .2s ease, opacity .2s ease;
}

.evrd-pa-group__item-body strong {
  white-space: normal;
  font-size: .9rem;
  line-height: 1.5;
  font-weight: 650;
  color: rgba(255, 255, 255, .80);
  transition: color .2s ease;
}

.evrd-pa-group__item--catalog:hover,
.evrd-pa-group__item--catalog.is-active,
.evrd-pa-group__item--catalog[aria-current="page"],
.evrd-pa-group__item--catalog.current-menu-item {
  background: linear-gradient(135deg, rgba(239, 55, 63, .18), rgba(216, 29, 38, .10));
  color: #fff;
}

.evrd-pa-group__item--catalog:hover::before,
.evrd-pa-group__item--catalog.is-active::before,
.evrd-pa-group__item--catalog[aria-current="page"]::before,
.evrd-pa-group__item--catalog.current-menu-item::before {
  height: 28px;
  opacity: 1;
}

.evrd-pa-group__item--catalog:hover .evrd-pa-group__item-body strong,
.evrd-pa-group__item--catalog.is-active .evrd-pa-group__item-body strong,
.evrd-pa-group__item--catalog[aria-current="page"] .evrd-pa-group__item-body strong,
.evrd-pa-group__item--catalog.current-menu-item .evrd-pa-group__item-body strong {
  color: #fff;
}

.evrd-pa-group__item--catalog:hover .evrd-pa-group__item-ico,
.evrd-pa-group__item--catalog.is-active .evrd-pa-group__item-ico,
.evrd-pa-group__item--catalog[aria-current="page"] .evrd-pa-group__item-ico,
.evrd-pa-group__item--catalog.current-menu-item .evrd-pa-group__item-ico {
  background: rgba(239, 55, 63, .20);
  border-color: rgba(239, 55, 63, .30);
  color: #ffd7d9;
}

/* Quick actions */
.evrd-pa-quick__grid {
  align-items: stretch;
}

.evrd-pa-quick__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.evrd-pa-quick__icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(82, 128, 255, .16);
  border: 1px solid rgba(112, 146, 255, .12);
  color: #80abff;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.evrd-pa-quick__icon svg {
  width: 18px;
  height: 18px;
}

.evrd-pa-quick__card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(239, 55, 63, .12), rgba(216, 29, 38, .06));
  border-color: rgba(239, 55, 63, .18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.evrd-pa-quick__card:hover .evrd-pa-quick__icon {
  background: rgba(239, 55, 63, .20);
  border-color: rgba(239, 55, 63, .26);
  color: #ff7d84;
  transform: translateY(-2px);
}

.evrd-pa-quick__card strong {
  margin-bottom: 4px;
}

/* Mobile hero compact and wider */
@media (max-width: 767px) {
  .evrd-pa-header .evrd-pa-brand__logo {
    width: 34px;
    max-width: none;
    height: 34px;
    object-fit: cover;
    object-position: left center;
    border-radius: 999px;
  }

  .evrd-pa-brand--drawer .evrd-pa-brand__logo {
    width: auto;
    max-width: 300px;
    height: 34px;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
  }

  .evrd-pa-hero__body {
    padding: 92px 0 22px;
  }

  .evrd-pa-hero__grid {
    min-height: calc(100svh - 126px);
  }

  .evrd-pa-stage__eyebrow {
    max-width: max-content;
    margin-inline: auto;
    margin-bottom: 4px;
  }

  .evrd-pa-stage__title {
    max-width: 17.2ch;
    font-size: clamp(2.05rem, 9.4vw, 3.2rem);
    line-height: .96;
    letter-spacing: -.045em;
    margin: 12px auto 14px;
    text-wrap: balance;
  }

  .evrd-pa-stage__text {
    max-width: 30ch;
    font-size: .95rem;
    line-height: 1.38;
    margin-inline: auto;
  }

  .evrd-pa-stage__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .evrd-pa-btn {
    width: min(100%, 308px);
    min-height: 46px;
    padding: 0 18px;
    font-size: .92rem;
  }

  .evrd-pa-kpis {
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: center;
    justify-items: center;
    gap: 8px 14px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .evrd-pa-kpi {
    white-space: nowrap;
    font-size: .82rem;
    min-height: 30px;
    gap: 7px;
    line-height: 1;
  }

  .evrd-pa-kpi:last-child {
    grid-column: 1 / -1;
  }

  .evrd-pa-kpi__icon {
    width: 20px;
    height: 20px;
  }

  .evrd-pa-kpi__icon svg {
    width: 13px;
    height: 13px;
  }

  .evrd-pa-scrollcue {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 6px;
    margin-top: 8px;
  }

  .evrd-pa-scrollcue__label {
    font-size: .78rem;
  }

  .evrd-pa-quick__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .evrd-pa-quick__card {
    min-height: 116px;
    padding: 14px 12px;
  }

  .evrd-pa-quick__icon {
    width: 34px;
    height: 34px;
    padding: 8px;
    margin-bottom: 8px;
  }

  .evrd-pa-quick__icon svg {
    width: 15px;
    height: 15px;
  }

  .evrd-pa-featured__icon {
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    border-radius: 12px;
  }

  .evrd-pa-featured__action {
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    border-radius: 12px;
  }
}



/* Header contrast and icons */
.evrd-pa-chip {
  gap: 8px;
}

.evrd-pa-brand__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.evrd-pa-brand__logo-wrap .evrd-pa-brand__logo {
  transition: opacity .26s ease, transform .26s ease, filter .26s ease;
}

.evrd-pa-brand__logo-wrap--dark {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

.evrd-pa-header.is-scrolled {
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1, 47, 103, .08);
  box-shadow: 0 10px 30px rgba(12, 35, 72, .10);
}

.evrd-pa-header.is-scrolled .evrd-pa-brand__logo-wrap:not(.evrd-pa-brand__logo-wrap--dark) {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.evrd-pa-header.is-scrolled .evrd-pa-brand__logo-wrap--dark {
  opacity: 1;
  transform: translateY(0);
}

.evrd-pa-header.is-scrolled .evrd-pa-header__nav a {
  color: rgba(15, 47, 103, .86);
}

.evrd-pa-header.is-scrolled .evrd-pa-header__nav a:hover {
  color: #012f67;
}

.evrd-pa-header.is-scrolled .evrd-pa-chip--ghost {
  background: rgba(1, 47, 103, .08);
  border-color: rgba(1, 47, 103, .14);
  color: #0f2f67;
}

.evrd-pa-header.is-scrolled .evrd-pa-chip--ghost:hover {
  color: #0f2f67;
}

.evrd-pa-header.is-scrolled .evrd-pa-chip--accent {
  box-shadow: 0 10px 20px rgba(220, 31, 38, .18);
}

.evrd-pa-header.is-scrolled .evrd-pa-menu-toggle {
  background: linear-gradient(180deg, rgba(10, 53, 122, .94), rgba(1, 47, 103, .98));
  border-color: rgba(1, 47, 103, .28);
}

/* Programs section */
.evrd-pa-programs {
  position: relative;
  padding: 108px 0 116px;
  background: linear-gradient(180deg, #f8fafe 0%, #eef4ff 100%);
  color: #10233f;
}

.evrd-pa-programs .evrd-pa-container {
  max-width: 1320px;
}

.evrd-pa-programs__head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.evrd-pa-programs__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(1, 47, 103, .08);
  border: 1px solid rgba(1, 47, 103, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
  color: #012f67;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-programs__title {
  margin: 18px 0 12px;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #0c2348;
}

.evrd-pa-programs__title .evrd-pa-accent-red {
  color: #dc1f26;
}

.evrd-pa-programs__text {
  margin: 0 auto;
  max-width: 48ch;
  color: rgba(16, 35, 63, .74);
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  line-height: 1.72;
}

.evrd-pa-programs__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.evrd-pa-programs__viewport {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  padding: 8px 2px 14px;
}

.evrd-pa-programs__viewport::-webkit-scrollbar {
  display: none;
}

.evrd-pa-programs__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  align-items: stretch;
}

.evrd-pa-programs__nav {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(1, 47, 103, .14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 53, 122, .94), rgba(1, 47, 103, .98));
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 30, 61, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.evrd-pa-programs__nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(220, 31, 38, .96), rgba(184, 20, 27, .98));
  border-color: rgba(220, 31, 38, .32);
  color: #fff;
  box-shadow: 0 18px 34px rgba(220, 31, 38, .22);
}

.evrd-pa-program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(12, 35, 72, .08);
  box-shadow: 0 18px 34px rgba(12, 35, 72, .08);
  scroll-snap-align: start;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.evrd-pa-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(12, 35, 72, .14);
  border-color: rgba(1, 47, 103, .12);
}

.evrd-pa-program-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b2c63 0%, #07214a 100%);
}

.evrd-pa-program-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 40, .10) 0%, rgba(4, 18, 40, .02) 42%, rgba(4, 18, 40, .14) 100%);
  pointer-events: none;
}

.evrd-pa-program-card__media img,
.evrd-pa-program-card__fallback {
  width: 100%;
  height: 100%;
}

.evrd-pa-program-card__media img {
  object-fit: cover;
  transition: transform .32s ease;
}

.evrd-pa-program-card:hover .evrd-pa-program-card__media img {
  transform: scale(1.03);
}

.evrd-pa-program-card__media.is-fallback {
  background: linear-gradient(180deg, #0b2c63 0%, #07214a 100%);
}

.evrd-pa-program-card__fallback {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(112, 146, 255, .20) 0, rgba(112, 146, 255, .20) 18%, transparent 18.2%),
    radial-gradient(circle at 15% 78%, rgba(220, 31, 38, .12) 0, rgba(220, 31, 38, .12) 16%, transparent 16.2%),
    linear-gradient(180deg, #0b2c63 0%, #07214a 100%);
}

.evrd-pa-program-card__fallback::before,
.evrd-pa-program-card__fallback::after {
  content: '';
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(122, 163, 255, .22);
}

.evrd-pa-program-card__fallback::before {
  width: 78px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -8px);
}

.evrd-pa-program-card__fallback::after {
  width: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 8px);
}

.evrd-pa-program-card__fallback-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(110, 149, 255, .18);
  color: #fff;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.evrd-pa-program-card__fallback-lines {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: grid;
  gap: 7px;
}

.evrd-pa-program-card__fallback-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
}

.evrd-pa-program-card__fallback-lines span:first-child {
  width: 66px;
}

.evrd-pa-program-card__fallback-lines span:last-child {
  width: 40px;
  justify-self: center;
}

.evrd-pa-program-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(1, 47, 103, .92);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-program-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.evrd-pa-program-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(16, 35, 63, .64);
  font-size: .9rem;
  font-weight: 700;
}

.evrd-pa-program-card__meta svg {
  width: 16px;
  height: 16px;
}

.evrd-pa-program-card__title {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.24;
  color: #0c2348;
  min-height: 2.5em;
}

.evrd-pa-program-card__text {
  margin: 0;
  color: rgba(16, 35, 63, .74);
  line-height: 1.62;
  font-size: .96rem;
}

.evrd-pa-program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: #dc1f26;
  font-weight: 800;
  text-decoration: none;
}

.evrd-pa-program-card__link span[data-lucide] {
  transition: transform .22s ease;
}

.evrd-pa-program-card__link:hover {
  color: #dc1f26;
}

.evrd-pa-program-card__link:hover span[data-lucide] {
  transform: translateX(4px);
}

.evrd-pa-programs__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .evrd-pa-programs .evrd-pa-container {
    max-width: 1240px;
  }

  .evrd-pa-programs__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 900px) {
  .evrd-pa-programs__carousel {
    grid-template-columns: 1fr;
  }

  .evrd-pa-programs__nav {
    display: none;
  }

  .evrd-pa-programs__track {
    grid-auto-columns: minmax(292px, 88%);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .evrd-pa-programs {
    padding: 78px 0 88px;
  }

  .evrd-pa-programs__head {
    margin-bottom: 28px;
  }

  .evrd-pa-programs__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .evrd-pa-programs__text {
    font-size: 1.02rem;
    line-height: 1.62;
    max-width: 32ch;
  }

  .evrd-pa-programs__track {
    grid-auto-columns: minmax(270px, 90%);
    gap: 18px;
  }

  .evrd-pa-program-card__media {
    min-height: 190px;
  }

  .evrd-pa-program-card__title {
    font-size: 1.15rem;
  }

  .evrd-pa-program-card__text {
    font-size: .94rem;
  }
}


/* === Targeted polish adjustments === */
html.evrd-public-app-lock,
html.evrd-public-app-lock body {
  overflow: hidden;
}

.evrd-pa-header__nav a {
  position: relative;
  transition: color .22s ease, opacity .22s ease;
}

.evrd-pa-header__nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 34px;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
  transform: translateX(-50%) scaleX(.5);
  transform-origin: center;
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease, background .22s ease, box-shadow .22s ease;
}

.evrd-pa-header__nav a:hover::after,
.evrd-pa-header__nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.evrd-pa-header__nav a.is-active {
  color: #fff;
}

.evrd-pa-header.is-scrolled .evrd-pa-header__nav a::after {
  background: #012f67;
  box-shadow: 0 0 0 1px rgba(1, 47, 103, .10);
}

.evrd-pa-header.is-scrolled .evrd-pa-header__nav a.is-active {
  color: #012f67;
}

.evrd-pa-programs {
  background:
    linear-gradient(180deg, #f8fafe 0%, #f4f7ff 54%, #eef4ff 100%);
}

.evrd-pa-programs__nav {
  border: 1px solid rgba(1, 47, 103, .08);
  background: rgba(255, 255, 255, .96);
  color: #012f67;
}

.evrd-pa-programs__nav:hover {
  background: #dc1f26;
  color: #fff;
  border-color: rgba(220, 31, 38, .26);
  box-shadow: 0 20px 38px rgba(8, 30, 61, .20);
}

.evrd-pa-programs__footer .evrd-pa-btn--primary {
  box-shadow: 0 14px 28px rgba(220, 31, 38, .18);
}

.evrd-pa-programs__footer .evrd-pa-btn--primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff434b, #c81922);
  border-color: rgba(220, 31, 38, .62);
  box-shadow: 0 18px 34px rgba(220, 31, 38, .26);
}

.evrd-pa-drawer__surface {
  overscroll-behavior: contain;
}


/* === Targeted micro-fixes: programs arrows, subtitle width, CTA hover === */
.evrd-pa-programs__text {
  max-width: 53ch;
}

.evrd-pa-programs__nav {
  background: rgba(255, 255, 255, .96);
  color: #012f67;
}

.evrd-pa-programs__nav svg {
  transition: stroke .22s ease, transform .22s ease;
}

.evrd-pa-programs__nav:hover {
  background: #dc1f26;
  color: #fff;
  border-color: rgba(220, 31, 38, .26);
}

.evrd-pa-programs__nav:hover svg {
  stroke: #fff;
  transform: translateX(1px);
}

.evrd-pa-program-card__link {
  transition: transform .22s ease, color .22s ease;
  will-change: transform;
}

.evrd-pa-program-card__link:hover {
  transform: translateX(4px);
  color: #dc1f26;
}

.evrd-pa-program-card__link:hover span[data-lucide] {
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .evrd-pa-programs__text {
    max-width: 32ch;
  }
}



/* Impact section — refactor limpio */
.evrd-pa-impact {
  position: relative;
  padding: 108px 0 116px;
  overflow: hidden;
  background:
    radial-gradient(960px 520px at 14% 16%, rgba(220, 31, 38, .10), transparent 52%),
    radial-gradient(980px 620px at 86% 12%, rgba(59, 130, 246, .16), transparent 54%),
    linear-gradient(135deg, #061a38 0%, #0a2f67 42%, #0b3c86 68%, #082554 100%);
  color: #f8fbff;
}

.evrd-pa-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, .03) 100%);
  pointer-events: none;
}

.evrd-pa-impact .evrd-pa-container {
  position: relative;
  z-index: 1;
}

.evrd-pa-impact__head {
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
}

.evrd-pa-impact__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(51, 161, 255, .14);
  border: 1px solid rgba(51, 161, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  color: #8fc8ff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: none;
}

.evrd-pa-impact__eyebrow svg {
  display: none;
}

.evrd-pa-impact__title {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.evrd-pa-impact__title .evrd-pa-accent-red {
  color: #33a1ff;
}

.evrd-pa-impact__text,
.evrd-pa-impact__quote {
  color: rgba(248, 251, 255, .84);
}

.evrd-pa-impact__text {
  margin: 0 auto;
  max-width: 53ch;
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  line-height: 1.72;
}

.evrd-pa-impact__band {
  position: static;
  padding-top: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.evrd-pa-impact__band::before {
  display: none;
}

.evrd-pa-impact__watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .12);
  will-change: transform, opacity;
}

.evrd-pa-impact__watermark--top {
  top: -26px;
  left: -26px;
  width: 300px;
  height: 300px;
  border-radius: 30px;
  opacity: .22;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 72%);
  transform-origin: top left;
  animation: evrdPaImpactMarkTop 8.5s ease-in-out infinite;
}

.evrd-pa-impact__watermark--bottom {
  right: -34px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  opacity: .14;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 68%);
  transform-origin: bottom right;
  animation: evrdPaImpactMarkBottom 9s ease-in-out infinite;
}

@keyframes evrdPaImpactMarkTop {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .20;
  }

  50% {
    transform: translate3d(12px, 12px, 0) scale(1.03);
    opacity: .30;
  }
}

@keyframes evrdPaImpactMarkBottom {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .13;
  }

  50% {
    transform: translate3d(-14px, -14px, 0) scale(1.04);
    opacity: .22;
  }
}

.evrd-pa-impact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

.evrd-pa-impact-card {
  text-align: center;
  padding: 28px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
  border: 0;
  box-shadow: none;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
  will-change: transform;
}

.evrd-pa-impact-card:hover {
  transform: translate3d(0, -6px, 0);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 36px rgba(4, 18, 40, .18);
}

.evrd-pa-impact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 14px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
}

.evrd-pa-impact-card__icon svg {
  width: 28px;
  height: 28px;
}

.evrd-pa-impact-card--green .evrd-pa-impact-card__icon {
  color: #34d399;
  background: rgba(52, 211, 153, .12);
}

.evrd-pa-impact-card--blue .evrd-pa-impact-card__icon {
  color: #dbeafe;
  background: rgba(255, 255, 255, .12);
}

.evrd-pa-impact-card--red .evrd-pa-impact-card__icon {
  color: #ff8086;
  background: rgba(255, 125, 132, .12);
}

.evrd-pa-impact-card--gold .evrd-pa-impact-card__icon {
  color: #e9c46a;
  background: rgba(233, 196, 106, .12);
}

.evrd-pa-impact-card__value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  line-height: 1;
}

.evrd-pa-impact-card__number,
.evrd-pa-impact-card__suffix,
.evrd-pa-impact-card__label {
  color: #fff;
}

.evrd-pa-impact-card__number {
  font-size: clamp(2.7rem, 3.9vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.05em;
}

.evrd-pa-impact-card__suffix {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .24em;
}

.evrd-pa-impact-card--green .evrd-pa-impact-card__suffix {
  color: #34d399;
}

.evrd-pa-impact-card--blue .evrd-pa-impact-card__suffix {
  color: #dbeafe;
}

.evrd-pa-impact-card--red .evrd-pa-impact-card__suffix {
  color: #ff8086;
}

.evrd-pa-impact-card--gold .evrd-pa-impact-card__suffix {
  color: #e9c46a;
}

.evrd-pa-impact-card__label {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.44;
  text-align: center;
  color: rgba(255, 255, 255, .90);
}

.evrd-pa-impact__quote {
  margin: 30px auto 0;
  max-width: 70ch;
  text-align: center;
  font-size: 1rem;
  line-height: 1.76;
}

@media (max-width: 1100px) {
  .evrd-pa-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .evrd-pa-impact {
    padding: 82px 0 88px;
  }

  .evrd-pa-impact__head {
    margin-bottom: 26px;
  }

  .evrd-pa-impact__title {
    font-size: clamp(2rem, 9vw, 3.15rem);
  }

  .evrd-pa-impact__text,
  .evrd-pa-impact__quote {
    max-width: 32ch;
    font-size: .98rem;
    line-height: 1.64;
  }

  .evrd-pa-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .evrd-pa-impact-card {
    padding: 20px 16px 18px;
    border-radius: 20px;
  }

  .evrd-pa-impact-card__icon {
    width: 52px;
    height: 52px;
    padding: 11px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .evrd-pa-impact-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .evrd-pa-impact-card__number {
    font-size: clamp(2.05rem, 8.4vw, 3rem);
  }

  .evrd-pa-impact-card__suffix {
    font-size: 1.5rem;
  }

  .evrd-pa-impact-card__label {
    font-size: .92rem;
  }

  .evrd-pa-impact__watermark--top {
    top: -18px;
    left: -18px;
    width: 150px;
    height: 150px;
    opacity: .18;
  }

  .evrd-pa-impact__watermark--bottom {
    right: -22px;
    bottom: -22px;
    width: 120px;
    height: 120px;
    opacity: .12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evrd-pa-impact__watermark {
    animation: none !important;
    transform: none !important;
  }

  .evrd-pa-impact-card {
    transition: none !important;
  }
}


/* About section */
.evrd-pa-about {
  position: relative;
  padding: 112px 0 126px;
  background:
    radial-gradient(920px 520px at 12% 16%, rgba(220, 31, 38, .05), transparent 54%),
    radial-gradient(980px 560px at 88% 10%, rgba(59, 130, 246, .08), transparent 56%),
    linear-gradient(180deg, #f8fafe 0%, #f3f7ff 54%, #eef4ff 100%);
  color: #10233f;
  overflow: hidden;
}

.evrd-pa-about .evrd-pa-container {
  position: relative;
  z-index: 1;
}

.evrd-pa-about__watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.evrd-pa-about__watermark--top {
  display: none;
}

.evrd-pa-about__watermark--bottom {
  right: 5%;
  bottom: 74px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 31, 38, .10), rgba(220, 31, 38, 0) 70%);
  opacity: .40;
}

.evrd-pa-about__shell {
  position: relative;
  padding: 8px 0 0;
}

.evrd-pa-about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto 74px;
  text-align: center;
}

.evrd-pa-about__head .evrd-pa-about__title,
.evrd-pa-about__head .evrd-pa-about__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.evrd-pa-about__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  margin: 0 0 18px;
  background: rgba(220, 31, 38, .06);
  border: 1px solid rgba(220, 31, 38, .18);
  color: #dc1f26;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-about__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.evrd-pa-about__media-col {
  position: relative;
  min-width: 0;
}

.evrd-pa-about__media-col::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  border: 1px solid rgba(51, 161, 255, .20);
  background: linear-gradient(180deg, rgba(51, 161, 255, .08), rgba(51, 161, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38);
  pointer-events: none;
  z-index: 3;
}

.evrd-pa-about__media {
  position: relative;
  margin: 0;
  z-index: 1;
}

.evrd-pa-about__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 54px rgba(12, 35, 72, .14);
}

.evrd-pa-about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(6, 22, 43, .05) 0%, rgba(6, 22, 43, .02) 52%, rgba(6, 22, 43, .10) 100%);
  pointer-events: none;
}

.evrd-pa-about__support-card {
  position: absolute;
  left: -6px;
  bottom: -22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: min(328px, calc(100% - 12px));
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(12, 35, 72, .10);
  box-shadow: 0 18px 36px rgba(12, 35, 72, .12);
  z-index: 2;
}

.evrd-pa-about__support-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(1, 47, 103, .18), rgba(220, 31, 38, .26));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.evrd-pa-about__support-icon,
.evrd-pa-about__panel-icon,
.evrd-pa-about__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.evrd-pa-about__support-icon {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(220, 31, 38, .10);
  border: 1px solid rgba(220, 31, 38, .16);
  color: #dc1f26;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.evrd-pa-about__support-icon svg,
.evrd-pa-about__panel-icon svg,
.evrd-pa-about__meta-icon svg {
  width: 22px;
  height: 22px;
}

.evrd-pa-about__support-copy strong,
.evrd-pa-about__support-copy span {
  display: block;
}

.evrd-pa-about__support-copy strong {
  color: #0c2348;
  font-size: 1rem;
  line-height: 1.18;
  margin-bottom: 6px;
}

.evrd-pa-about__support-copy span {
  color: rgba(16, 35, 63, .68);
  font-size: .94rem;
  line-height: 1.52;
}

.evrd-pa-about__content {
  min-width: 0;
  width: 100%;
}

.evrd-pa-about__title {
  margin: 2px 0 16px;
  width: 100%;
  max-width: 20ch;
  color: #0c2348;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.evrd-pa-about__title .evrd-pa-accent-red {
  color: #dc1f26;
}

.evrd-pa-about__intro {
  margin: 0;
  width: 100%;
  max-width: 78ch;
  color: rgba(16, 35, 63, .74);
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  line-height: 1.78;
}

.evrd-pa-about__intro strong,
.evrd-pa-about__panel strong {
  color: #0c2348;
}

.evrd-pa-about__divider {
  display: none;
}

.evrd-pa-about__panel {
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.evrd-pa-about__panel-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.evrd-pa-about__panel-icon {
  width: 54px;
  height: 54px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(217, 177, 90, .14);
  border: 1px solid #d9b15a4d;
  color: #d9b15a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.evrd-pa-about__panel-head h3 {
  margin: 0;
  color: #0c2348;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.08;
}

.evrd-pa-about__panel-copy {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.evrd-pa-about__panel-copy p {
  margin: 0 0 18px;
  color: rgba(16, 35, 63, .72);
  font-size: 1rem;
  line-height: 1.84;
}

.evrd-pa-about__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 100%;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 35, 72, .10);
}

.evrd-pa-about__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(12, 35, 72, .08);
  box-shadow: 0 12px 24px rgba(12, 35, 72, .05);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
  will-change: transform;
}

.evrd-pa-about__meta-item:hover {
  transform: translate3d(0, -6px, 0);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 36px rgba(12, 35, 72, .10);
}

.evrd-pa-about__meta-icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 14px;
}

.evrd-pa-about__meta-item--red .evrd-pa-about__meta-icon {
  background: rgba(220, 31, 38, .10);
  color: #dc1f26;
}

.evrd-pa-about__meta-item--blue .evrd-pa-about__meta-icon {
  background: rgba(1, 47, 103, .08);
  color: #012f67;
}

.evrd-pa-about__meta-item--gold .evrd-pa-about__meta-icon {
  background: rgba(217, 177, 90, .14);
  color: #b88f33;
}

.evrd-pa-about__meta-item strong,
.evrd-pa-about__meta-item small {
  display: block;
}

.evrd-pa-about__meta-item strong {
  color: #0c2348;
  font-size: 1.12rem;
  line-height: 1.15;
}

.evrd-pa-about__meta-item small {
  margin-top: 2px;
  color: rgba(16, 35, 63, .48);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 1100px) {
  .evrd-pa-about__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .evrd-pa-about__head {
    margin-bottom: 28px;
  }

  .evrd-pa-about__title,
  .evrd-pa-about__intro {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .evrd-pa-about {
    padding: 84px 0 100px;
  }

  .evrd-pa-about__head {
    margin-bottom: 24px;
  }

  .evrd-pa-about__title {
    max-width: 100%;
    font-size: clamp(2.15rem, 8.6vw, 3rem);
    line-height: 1.06;
  }

  .evrd-pa-about__intro {
    max-width: 92%;
    font-size: .98rem;
    line-height: 1.72;
  }

  .evrd-pa-about__top {
    gap: 28px;
  }

  .evrd-pa-about__media-col::before {
    top: -12px;
    left: -10px;
    width: 64px;
    height: 64px;
    z-index: 3;
  }

  .evrd-pa-about__media img {
    aspect-ratio: 16 / 12;
    border-radius: 24px;
  }

  .evrd-pa-about__support-card {
    position: static;
    margin-top: 14px;
    width: 100%;
  }

  .evrd-pa-about__panel-head {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .evrd-pa-about__meta {
    grid-template-columns: 1fr;
  }

  .evrd-pa-about__watermark--bottom {
    right: -18px;
    bottom: 64px;
    width: 120px;
    height: 120px;
  }
  
  .evrd-pa-about__panel-head{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    
  }
  
  .evrd-pa-about__panel-copy{
    max-width: 100%;
    margin: 0;
    text-align: center;
    padding: 6px 12px;
  }
}


/* Alliances section */
.evrd-pa-alliances {
  position: relative;
  padding: 104px 0 116px;
  background:
    radial-gradient(920px 520px at 12% 14%, rgba(59, 130, 246, .08), transparent 52%),
    radial-gradient(980px 560px at 86% 10%, rgba(220, 31, 38, .05), transparent 54%),
    linear-gradient(180deg, #f7fafe 0%, #eff4ff 100%);
  color: #10233f;
  overflow: hidden;
}

.evrd-pa-alliances .evrd-pa-container {
  position: relative;
  z-index: 1;
}

.evrd-pa-alliances__head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.evrd-pa-alliances__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(51, 161, 255, .14);
  border: 1px solid rgba(51, 161, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  color: #33a1ff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-alliances__title {
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #0c2348;
}

.evrd-pa-alliances__text {
  margin: 0 auto;
  max-width: 42ch;
  color: rgba(16, 35, 63, .74);
  font-size: clamp(1.02rem, 1.32vw, 1.16rem);
  line-height: 1.72;
}

.evrd-pa-alliances__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.evrd-pa-alliance-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 144px;
  padding: 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(12, 35, 72, .08);
  box-shadow: 0 16px 32px rgba(12, 35, 72, .05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.evrd-pa-alliance-card:hover {
  transform: translate3d(0, -6px, 0);
  background: rgba(255, 255, 255, .94);
  border-color: rgba(1, 47, 103, .12);
  box-shadow: 0 22px 42px rgba(12, 35, 72, .10);
}

.evrd-pa-alliance-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
}

.evrd-pa-alliance-card__logo {
  display: block;
  width: 100%;
  max-width: 164px;
  max-height: 62px;
  object-fit: contain;
  filter: saturate(.98) contrast(1.02);
}

@media (max-width: 1180px) {
  .evrd-pa-alliances__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .evrd-pa-alliances {
    padding: 82px 0 92px;
  }

  .evrd-pa-alliances__head {
    margin-bottom: 28px;
  }

  .evrd-pa-alliances__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .evrd-pa-alliances__text {
    max-width: 32ch;
    font-size: .98rem;
    line-height: 1.64;
  }

  .evrd-pa-alliances__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .evrd-pa-alliance-card {
    min-height: 118px;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .evrd-pa-alliance-card__logo {
    max-width: 128px;
    max-height: 46px;
  }
}


/* === Alliances final polish === */
.evrd-pa-alliances__title .evrd-pa-accent-blue {
  color: #33a1ff;
}

.evrd-pa-alliances__text {
  max-width: 53ch;
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  line-height: 1.72;
}

.evrd-pa-alliance-card {
  min-height: 140px;
  padding: 18px 16px;
}

.evrd-pa-alliance-card__logo-wrap {
  min-height: 84px;
  padding: 0;
}

.evrd-pa-alliance-card__logo {
  width: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.evrd-pa-alliance-card:hover .evrd-pa-alliance-card__logo {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .evrd-pa-alliances__text {
    max-width: 32ch;
    font-size: .98rem;
    line-height: 1.64;
  }

  .evrd-pa-alliance-card__logo {
    max-height: 78px;
  }
}


/* === Alliances micro-polish: mejores blue + glass logos === */
.evrd-pa-alliances__title .evrd-pa-accent-blue {
  color: #33a1ff;
}

.evrd-pa-alliance-card {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.evrd-pa-alliance-card:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(51, 161, 255, .22);
  box-shadow: none;
}

.evrd-pa-alliance-card__logo-wrap {
  background: transparent;
  box-shadow: none;
}

.evrd-pa-alliance-card__logo {
  background: transparent;
  box-shadow: none;
}



/* FAQ section */
.evrd-pa-faq {
  position: relative;
  padding: 106px 0 118px;
  background:
    radial-gradient(920px 520px at 12% 14%, rgba(220, 31, 38, .05), transparent 52%),
    radial-gradient(980px 560px at 88% 12%, rgba(59, 130, 246, .08), transparent 56%),
    linear-gradient(180deg, #f8fafe 0%, #eef4ff 100%);
  color: #10233f;
  overflow: hidden;
}

.evrd-pa-faq .evrd-pa-container {
  position: relative;
  z-index: 1;
}

.evrd-pa-faq__head {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.evrd-pa-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(1, 47, 103, .08);
  border: 1px solid rgba(1, 47, 103, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
  color: #012f67;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-faq__title {
  margin: 18px 0 12px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #0c2348;
}

.evrd-pa-faq__title .evrd-pa-accent-red {
  color: #dc1f26;
}

.evrd-pa-faq__text {
  margin: 0 auto;
  max-width: 53ch;
  color: rgba(16, 35, 63, .74);
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  line-height: 1.72;
}

.evrd-pa-faq__list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.evrd-pa-faq__item {
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(12, 35, 72, .08);
  box-shadow: 0 16px 34px rgba(12, 35, 72, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.evrd-pa-faq__item:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 22px 42px rgba(12, 35, 72, .10);
  border-color: rgba(1, 47, 103, .12);
}

.evrd-pa-faq__item.is-open {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(1, 47, 103, .12);
}

.evrd-pa-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.evrd-pa-faq__trigger-copy {
  display: block;
  min-width: 0;
}

.evrd-pa-faq__q {
  display: block;
  color: #0c2348;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.45;
  font-weight: 800;
}

.evrd-pa-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(1, 47, 103, .08);
  border: 1px solid rgba(1, 47, 103, .10);
  color: #012f67;
  transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
  padding: 10px;
}

.evrd-pa-faq__item.is-open .evrd-pa-faq__icon {
  background: rgba(220, 31, 38, .10);
  border-color: rgba(220, 31, 38, .16);
  color: #dc1f26;
  transform: rotate(45deg);
}

.evrd-pa-faq__panel {
  padding: 0 26px 24px;
}

.evrd-pa-faq__answer {
  max-width: 88ch;
  color: rgba(16, 35, 63, .74);
  font-size: 1rem;
  line-height: 1.82;
}

.evrd-pa-faq__answer p {
  margin: 0;
}

@media (max-width: 767px) {
  .evrd-pa-faq {
    padding: 82px 0 92px;
  }

  .evrd-pa-faq__head {
    margin-bottom: 28px;
  }

  .evrd-pa-faq__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .evrd-pa-faq__text {
    max-width: 32ch;
    font-size: .98rem;
    line-height: 1.64;
  }

  .evrd-pa-faq__trigger {
    padding: 18px 18px;
    gap: 14px;
  }

  .evrd-pa-faq__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .evrd-pa-faq__panel {
    padding: 0 18px 18px;
  }

  .evrd-pa-faq__answer {
    font-size: .96rem;
    line-height: 1.72;
  }
}


/* CTA final */
.evrd-pa-cta {
  position: relative;
  padding: 124px 0 132px;
  overflow: hidden;
  color: #fff;
  background: #071b38;
}

.evrd-pa-cta .evrd-pa-container {
  position: relative;
  z-index: 2;
}

.evrd-pa-cta__media,
.evrd-pa-cta__bg,
.evrd-pa-cta__overlay,
.evrd-pa-cta__shade,
.evrd-pa-cta__glow {
  position: absolute;
  inset: 0;
}

.evrd-pa-cta__media {
  pointer-events: none;
}

.evrd-pa-cta__bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(.88) contrast(.94) brightness(.46);
}

.evrd-pa-cta__overlay {
  background:
    linear-gradient(180deg, rgba(4, 12, 28, .56) 0%, rgba(4, 18, 40, .30) 18%, rgba(4, 18, 40, .58) 100%),
    radial-gradient(920px 560px at 72% 8%, rgba(59, 130, 246, .12), transparent 48%);
}

.evrd-pa-cta__shade {
  background: linear-gradient(90deg, rgba(4, 16, 39, .78) 0%, rgba(4, 18, 40, .62) 24%, rgba(4, 18, 40, .36) 55%, rgba(4, 18, 40, .24) 100%);
}

.evrd-pa-cta__glow {
  background:
    radial-gradient(660px 400px at 14% 18%, rgba(220, 31, 38, .14), transparent 58%),
    radial-gradient(880px 560px at 86% 16%, rgba(59, 130, 246, .18), transparent 54%),
    radial-gradient(760px 460px at 20% 100%, rgba(2, 47, 103, .18), transparent 48%);
}

.evrd-pa-cta__inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.evrd-pa-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(220, 31, 38, .12);
  border: 1px solid rgba(220, 31, 38, .26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  color: #ff7d84;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.evrd-pa-cta__title {
  margin: 20px auto 16px;
  max-width: 26ch;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.evrd-pa-cta__title .evrd-pa-accent-blue {
  color: #33a1ff;
}

.evrd-pa-cta__text {
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(248, 251, 255, .82);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.evrd-pa-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.evrd-pa-cta__actions .evrd-pa-btn {
  width: auto;
  min-width: 214px;
}

.evrd-pa-cta__actions .evrd-pa-btn--primary {
  box-shadow: 0 18px 38px rgba(220, 31, 38, .22);
}

.evrd-pa-cta__actions .evrd-pa-btn--primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff434b, #c81922);
  border-color: rgba(220, 31, 38, .64);
  box-shadow: 0 22px 42px rgba(220, 31, 38, .28);
}

.evrd-pa-btn--cta-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.evrd-pa-btn--cta-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .30);
}

.evrd-pa-cta__particle {
  position: absolute;
  display: block;
  border-radius: 999px;
  opacity: .7;
  animation: evrdPaCtaBlink 3.8s ease-in-out infinite;
}

.evrd-pa-cta__particle--one,
.evrd-pa-cta__particle--two,
.evrd-pa-cta__particle--four {
  background: rgba(96, 165, 250, .76);
  box-shadow: 0 0 0 6px rgba(51, 161, 255, .04), 0 0 24px rgba(51, 161, 255, .18);
}

.evrd-pa-cta__particle--three {
  background: rgba(220, 31, 38, .52);
  box-shadow: 0 0 0 6px rgba(220, 31, 38, .03), 0 0 22px rgba(220, 31, 38, .16);
}

.evrd-pa-cta__particle--one {
  top: 22%;
  left: 24%;
  width: 12px;
  height: 12px;
  animation-delay: .2s;
}

.evrd-pa-cta__particle--two {
  top: 74%;
  right: 20%;
  width: 14px;
  height: 14px;
  animation-delay: 1s;
}

.evrd-pa-cta__particle--three {
  top: 38%;
  left: 33%;
  width: 10px;
  height: 10px;
  animation-delay: 1.8s;
}

.evrd-pa-cta__particle--four {
  bottom: 20%;
  right: 28%;
  width: 12px;
  height: 12px;
  animation-delay: 2.4s;
}

@keyframes evrdPaCtaBlink {
  0%, 100% {
    opacity: .18;
    transform: scale(.82);
  }
  35% {
    opacity: .86;
    transform: scale(1.08);
  }
  60% {
    opacity: .44;
    transform: scale(.94);
  }
}

@media (max-width: 767px) {
  .evrd-pa-cta {
    padding: 86px 0 92px;
  }

  .evrd-pa-cta__title {
    max-width: 16ch;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: .98;
  }

  .evrd-pa-cta__text {
    max-width: 36ch;
    font-size: .98rem;
    line-height: 1.58;
  }

  .evrd-pa-cta__actions {
    flex-direction: column;
    gap: 12px;
  }

  .evrd-pa-cta__actions .evrd-pa-btn {
    width: min(100%, 312px);
  }

  .evrd-pa-cta__particle--one {
    top: 20%;
    left: 10%;
  }

  .evrd-pa-cta__particle--two {
    top: 28%;
    right: 8%;
  }

  .evrd-pa-cta__particle--three {
    bottom: 18%;
    left: 12%;
    top: auto;
  }

  .evrd-pa-cta__particle--four {
    bottom: 14%;
    right: 10%;
  }
}

/* Footer */
.evrd-pa-footer {
  position: relative;
  padding: 36px 0 34px;
  background:
    radial-gradient(960px 520px at 14% 16%, rgba(220, 31, 38, .10), transparent 52%),
    radial-gradient(980px 620px at 86% 12%, rgba(59, 130, 246, .16), transparent 54%),
    linear-gradient(135deg, #061a38 0%, #0a2f67 42%, #0b3c86 68%, #082554 100%);
  color: #f8fbff;
  overflow: hidden;
}

.evrd-pa-footer .evrd-pa-container {
  position: relative;
  z-index: 1;
}

.evrd-pa-footer__newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 20px;
  align-items: center;
  width: min(100%, 1040px);
  margin: 0 auto 34px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(217, 177, 90, .24), rgba(220, 31, 38, .16) 48%, rgba(217, 177, 90, .18) 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.evrd-pa-footer__newsletter-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.evrd-pa-footer__newsletter-copy strong,
.evrd-pa-footer__newsletter-copy span {
  display: block;
}

.evrd-pa-footer__newsletter-copy strong {
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  line-height: 1.1;
  color: #fff;
}

.evrd-pa-footer__newsletter-copy span {
  margin-top: 4px;
  color: rgba(248, 251, 255, .78);
  line-height: 1.48;
}

.evrd-pa-footer__newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef373f, #d81d26);
  color: #fff;
  box-shadow: 0 14px 30px rgba(220, 31, 38, .24);
  flex: 0 0 auto;
}

.evrd-pa-footer__newsletter-icon svg,
.evrd-pa-footer__socials a svg,
.evrd-pa-footer__store-icon svg,
.evrd-pa-footer__contact-list a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.evrd-pa-footer__newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.evrd-pa-footer__newsletter-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .95);
  color: #0c2348;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

.evrd-pa-footer__newsletter-form input::placeholder {
  color: rgba(12, 35, 72, .44);
}

.evrd-pa-footer__newsletter-form .evrd-pa-btn {
  width: auto;
  min-width: 182px;
}

.evrd-pa-footer__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(170px, .68fr) minmax(170px, .68fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}

.evrd-pa-footer__brand {
  min-width: 0;
}

.evrd-pa-footer__brandmark {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}

.evrd-pa-footer__brand-logo {
  display: block;
  width: auto;
  max-width: 300px;
  height: 58px;
  object-fit: contain;
}

.evrd-pa-footer__brandtext {
  max-width: 30ch;
  margin: 0 0 22px;
  color: rgba(248, 251, 255, .82);
  font-size: 1.02rem;
  line-height: 1.72;
}

.evrd-pa-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.evrd-pa-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(248, 251, 255, .92);
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.evrd-pa-footer__socials a:hover {
  transform: translateY(-3px);
  background: rgba(220, 31, 38, .16);
  border-color: rgba(220, 31, 38, .24);
  color: #fff;
}

.evrd-pa-footer__stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.evrd-pa-footer__store {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.evrd-pa-footer__store:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.evrd-pa-footer__store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  color: #fff;
  flex: 0 0 auto;
}

.evrd-pa-footer__store-copy small,
.evrd-pa-footer__store-copy strong {
  display: block;
  line-height: 1.15;
}

.evrd-pa-footer__store-copy small {
  color: rgba(248, 251, 255, .62);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.evrd-pa-footer__store-copy strong {
  margin-top: 4px;
  color: #fff;
  font-size: .98rem;
}

.evrd-pa-footer__nav,
.evrd-pa-footer__contact {
  display: block;
}

.evrd-pa-footer__nav h3,
.evrd-pa-footer__contact h3 {
  margin: 0 0 18px;
  color: #33a1ff;
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.evrd-pa-footer__nav a {
  display: block;
  margin: 0 0 14px;
  color: rgba(248, 251, 255, .82);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  transition: transform .22s ease, color .22s ease;
}

.evrd-pa-footer__nav a:last-child {
  margin-bottom: 0;
}

.evrd-pa-footer__nav a:hover {
  color: #fff;
  transform: translateX(4px);
}

.evrd-pa-footer__contact-list {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.evrd-pa-footer__contact-list a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: rgba(248, 251, 255, .82);
  text-decoration: none;
  line-height: 1.64;
}

.evrd-pa-footer__contact-list a:hover {
  color: #fff;
}

.evrd-pa-footer__contact-list a > span[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4d06f;
  margin-top: 4px;
}

.evrd-pa-footer__map {
  overflow: hidden;
  min-height: 154px;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
}

.evrd-pa-footer__map iframe {
  display: block;
  width: 100%;
  height: 154px;
  border: 0;
  filter: saturate(.92) contrast(.98);
}

.evrd-pa-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.evrd-pa-footer__bottom p {
  margin: 0;
  color: rgba(248, 251, 255, .70);
  line-height: 1.5;
}

.evrd-pa-footer__legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.evrd-pa-footer__legal a {
  color: rgba(248, 251, 255, .80);
  text-decoration: none;
  transition: color .22s ease, transform .22s ease;
}

.evrd-pa-footer__legal a:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .evrd-pa-footer__grid {
    grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(150px, .7fr)) minmax(260px, 1fr);
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .evrd-pa-footer__newsletter {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .evrd-pa-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .evrd-pa-footer {
    padding: 34px 0 26px;
  }

  .evrd-pa-footer__newsletter {
    width: 100%;
    padding: 16px;
    gap: 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .evrd-pa-footer__newsletter-copy {
    align-items: flex-start;
  }

  .evrd-pa-footer__newsletter-form {
    grid-template-columns: 1fr;
  }

  .evrd-pa-footer__newsletter-form .evrd-pa-btn {
    width: 100%;
  }

  .evrd-pa-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .evrd-pa-footer__brand-logo {
    max-width: 300px;
    height: 48px;
  }

  .evrd-pa-footer__brandtext {
    max-width: 100%;
    font-size: .98rem;
  }

  .evrd-pa-footer__stores {
     grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evrd-pa-footer__map,
  .evrd-pa-footer__map iframe {
    min-height: 140px;
    height: 140px;
  }

  .evrd-pa-footer__bottom {
    margin-top: 26px;
    padding-top: 18px;
    align-items: flex-start;
  }

  .evrd-pa-footer__legal {
    gap: 12px;
  }
}

/* === Footer blend + social icon visibility fix === */
.evrd-pa-footer {
  margin-top: -1px;
  background:
    radial-gradient(960px 520px at 18% 14%, rgba(220, 31, 38, .08), transparent 54%),
    radial-gradient(980px 620px at 82% 10%, rgba(59, 130, 246, .14), transparent 56%),
    linear-gradient(180deg, #0a2145 0%, #0a2c63 38%, #0b3a84 100%);
}

.evrd-pa-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, .02) 100%);
  pointer-events: none;
}

.evrd-pa-footer__newsletter {
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(220, 31, 38, .10) 42%, rgba(59, 130, 246, .16) 100%);
}

.evrd-pa-footer__socials a > svg,
.evrd-pa-footer__socials a > span,
.evrd-pa-footer__store-icon > svg,
.evrd-pa-footer__contact-list a > span[data-lucide] > svg {
  display: block;
}

.evrd-pa-footer__socials a > svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.evrd-pa-footer__socials a > span[data-lucide] {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.evrd-pa-footer__socials a > span[data-lucide] svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.evrd-pa-footer__socials a {
  color: rgba(248, 251, 255, .92);
}

.evrd-pa-footer__socials a:hover {
  color: #fff;
}

/* === Footer brand SVG + mobile footer alignment polish === */
.evrd-pa-footer__socials a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.evrd-pa-footer__socials a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.evrd-pa-footer__socials a[aria-label="YouTube"] svg path:last-child,
.evrd-pa-footer__socials a[aria-label="Instagram"] svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.evrd-pa-footer__socials a[aria-label="LinkedIn"] svg circle,
.evrd-pa-footer__socials a[aria-label="LinkedIn"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.evrd-pa-footer__store-icon {
  padding: 9px;
}

.evrd-pa-footer__store-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.evrd-pa-footer__store-icon--apple svg {
  fill: currentColor;
}

.evrd-pa-footer__store-icon--play {
  padding: 8px;
}

@media (max-width: 767px) {
  .evrd-pa-footer__newsletter-copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .evrd-pa-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .evrd-pa-footer__brandmark {
    justify-content: center;
    margin-bottom: 16px;
  }

  .evrd-pa-footer__brandtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .evrd-pa-footer__socials {
    justify-content: center;
  }

  .evrd-pa-footer__stores {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .evrd-pa-footer__nav {
    text-align: center;
  }

  .evrd-pa-footer__nav a {
    transform: none !important;
  }

  .evrd-pa-footer__contact {
    text-align: center;
  }

  .evrd-pa-footer__contact-list {
    justify-items: center;
  }

  .evrd-pa-footer__contact-list a {
    width: min(100%, 420px);
    justify-content: center;
    grid-template-columns: 20px minmax(0, auto);
    text-align: left;
  }

  .evrd-pa-footer__map {
    max-width: 360px;
    margin-inline: auto;
  }

  .evrd-pa-footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .evrd-pa-footer__legal {
    justify-content: center;
    width: 100%;
  }
}

/* === Footer final polish: PholioDev, hover rojo, stores premium, mobile alignment === */
.evrd-pa-footer__bottom p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.evrd-pa-footer__credit-sep {
  opacity: .55;
}

.evrd-pa-footer__credit-link {
  color: #8fc8ff;
  font-weight: 800;
  text-decoration: none;
  transition: color .22s ease, transform .22s ease;
}

.evrd-pa-footer__credit-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.evrd-pa-footer__quick-link,
.evrd-pa-footer__store--app {
  position: relative;
  overflow: hidden;
}

.evrd-pa-footer__quick-link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 2px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 55, 63, .98), rgba(216, 29, 38, .90));
  transform: translateY(-50%);
  opacity: 0;
  transition: height .2s ease, opacity .2s ease, left .2s ease;
}

.evrd-pa-footer__quick-link:hover {
  color: #fff;
  transform: translateX(6px);
}

.evrd-pa-footer__quick-link:hover::before {
  height: 22px;
  opacity: 1;
  left: -2px;
}

.evrd-pa-footer__store--app {
  min-height: 74px;
  padding: 12px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05)),
    linear-gradient(135deg, rgba(59,130,246,.08), rgba(220,31,38,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.evrd-pa-footer__store--app::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.10) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .55s ease;
  pointer-events: none;
}

.evrd-pa-footer__store--app:hover::after {
  transform: translateX(130%);
}

.evrd-pa-footer__store--app:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)),
    linear-gradient(135deg, rgba(59,130,246,.12), rgba(220,31,38,.10));
  border-color: rgba(239, 55, 63, .20);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.evrd-pa-footer__store--app .evrd-pa-footer__store-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

@media (max-width: 767px) {
  .evrd-pa-footer__newsletter {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .evrd-pa-footer__newsletter-form input,
  .evrd-pa-footer__newsletter-form .evrd-pa-btn {
    max-width: 100%;
  }

  .evrd-pa-footer__brand-logo {
    margin-inline: auto;
  }

  .evrd-pa-footer__quick-link:hover {
    transform: none;
  }

  .evrd-pa-footer__quick-link::before {
    display: none;
  }

  .evrd-pa-footer__bottom p {
    justify-content: center;
  }
}
