/* =========================================================
   PUBLIC LAYOUT — desktop header + public footer only
   Mobile header / drawer / bottom nav are handled in evenco.css
========================================================= */

/* =========================================================
   PUBLIC DESKTOP HEADER
========================================================= */

@media (min-width: 1025px) {
  .ev-mkt-header {
    position: fixed;
    top: 14px;
    left: 50%;
    right: auto;
    width: min(88vw, 1280px);
    max-width: 1200px;
    height: 58px;
    margin: 0;
    transform: translateX(-50%);
    border-radius: 999px;
    z-index: 9999;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .dark .ev-mkt-header {
    background: rgba(20, 16, 24, 0.82);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  }

  .ev-mkt-header__inner {
    height: 58px;
    padding: 0 10px 0 22px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .ev-mkt-header__brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .ev-mkt-header__brand .ev-logo,
  .ev-mkt-header__brand svg,
  .ev-mkt-header__brand img {
    display: block;
    max-height: 34px;
    width: auto;
  }

  .ev-mkt-nav {
    justify-self: center;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .ev-mkt-nav__link,
  .ev-mkt-dropdown__trigger {
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    transition: color 0.16s ease, background-color 0.16s ease;
  }

  .ev-mkt-nav__link:hover,
  .ev-mkt-dropdown__trigger:hover {
    color: #0f172a;
    background: transparent;
  }

  .ev-caret {
    font-size: 11px;
    line-height: 1;
    opacity: 0.75;
    transform: translateY(1px);
  }

  .ev-mkt-header__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .ev-mkt-header__actions .ev-btn-primary {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .ev-mkt-header__actions .ev-btn-secondary {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
  }

  .ev-mkt-header__actions .ev-avatar,
  .ev-mkt-header__actions .ev-profile-menu__summary {
    flex: 0 0 auto;
  }

  .ev-mkt-header__actions .ev-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .ev-public-menu-btn,
  .ev-mkt-burger {
    display: none !important;
  }
}

/* =========================================================
   PUBLIC DESKTOP DROPDOWNS
========================================================= */

.ev-mkt-dropdown {
  position: relative;
}

.ev-mkt-dropdown__trigger {
  cursor: pointer;
}

.ev-mkt-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 640px;
  margin-top: 0;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 50;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ev-mkt-dropdown:hover .ev-mkt-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ev-mkt-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ev-mkt-dropdown--compact .ev-mkt-dropdown__panel,
.ev-mkt-dropdown__panel--compact {
  width: 340px;
  padding: 16px;
}

.ev-mkt-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ev-mkt-dropdown__item {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
  transform: translateZ(0);
}

.ev-mkt-dropdown__item:hover {
  background: #f8f9fb;
  transform: translateY(-1px);
}

.ev-mkt-dropdown__item-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

.ev-mkt-dropdown__item-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.ev-mkt-product {
  display: block;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}

.ev-mkt-product:hover {
  background: #f8f9fb;
  transform: translateY(-2px);
}

.ev-mkt-product__main {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ev-mkt-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.ev-mkt-product__desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.ev-mkt-product__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.ev-mkt-product__cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ev-pink, #e11d48);
}

.ev-mkt-product__subcta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ev-mkt-product__subcta:hover {
  color: var(--ev-pink, #e11d48);
}

/* =========================================================
   PUBLIC FOOTER
========================================================= */

.ev-footer {
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
  color: #64748b;
  overflow: hidden;
}

.ev-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 38px;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 72px;
  width: 100%;
}

.ev-footer__brand {
  min-width: 0;
}

.ev-footer__brand p {
  max-width: 310px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.ev-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ev-footer__mark {
  width: 7px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef0a6a, #b6359c);
}

.ev-footer__badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  max-width: 100%;
}

.ev-footer__badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ev-footer__badge span {
  line-height: 1.35;
}

.ev-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.ev-footer__nav h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.ev-footer__nav a {
  display: block;
  margin-top: 10px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.ev-footer__nav a:hover {
  color: #ef0a6a;
  transform: translateX(2px);
}

.ev-footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 26px;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.ev-footer__bottom p {
  margin: 0;
}

.ev-footer__socials {
  display: flex;
  gap: 10px;
}

.ev-footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.ev-footer__socials a:hover {
  color: #ef0a6a;
  border-color: rgba(239, 10, 106, 0.25);
}

/* =========================================================
   PUBLIC FOOTER RESPONSIVE ONLY
   No mobile header / drawer / bottom nav here.
========================================================= */

@media (max-width: 900px) {
  .ev-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ev-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ev-footer__inner {
    padding: 48px 20px 24px;
    gap: 38px;
  }

  .ev-footer__logo {
    font-size: 24px;
  }

  .ev-footer__mark {
    width: 6px;
    height: 32px;
  }

  .ev-footer__brand p {
    max-width: 100%;
    font-size: 14px;
  }

  .ev-footer__badge {
    margin-top: 22px;
    padding: 10px 12px;
    border-radius: 18px;
    font-size: 12px;
  }

  .ev-footer__badge img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .ev-footer__nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ev-footer__nav h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .ev-footer__nav a {
    font-size: 14px;
    margin-top: 12px;
  }

  .ev-footer__bottom {
    padding: 18px 24px 26px;
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   PUBLIC HEADER — responsive visibility
========================================================= */

@media (min-width: 1025px) {
  .ev-mkt-header .ev-mkt-nav,
  .ev-mkt-header .ev-mkt-header__actions {
    display: inline-flex !important;
  }

  .ev-mkt-header .ev-mkt-mobile-actions,
  .ev-mkt-header .ev-mobile-public-actions,
  .ev-mobile-bottom-nav,
  .ev-public-bottom-nav,
  .ev-drawer,
  .ev-public-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .ev-mkt-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--ev-mobile-header-h, 68px) !important;
    margin: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.88) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ev-border-subtle) !important;
    box-shadow: none !important;
  }

  .ev-mkt-header__inner {
    width: 100% !important;
    height: var(--ev-mobile-header-h, 68px) !important;
    min-height: var(--ev-mobile-header-h, 68px) !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .ev-mkt-header .ev-mkt-nav,
  .ev-mkt-header .ev-mkt-header__actions {
    display: none !important;
  }

  .ev-mkt-header .ev-mkt-mobile-actions,
  .ev-mkt-header .ev-mobile-public-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
}

/* =========================================================
   PUBLIC HEADER — z-index mobile/desktop
========================================================= */

.ev-mkt-header {
  z-index: 10000 !important;
}

.ev-mkt-header__inner {
  position: relative;
  z-index: 2;
}

.ev-mkt-dropdown__panel {
  z-index: 10001 !important;
}

.ev-drawer,
.ev-public-menu {
  z-index: 10020 !important;
}

.ev-public-bottom-nav,
.ev-mobile-bottom-nav {
  z-index: 9990 !important;
}

/* =========================================================
   PUBLIC HEADER — caché quand le drawer mobile est ouvert
========================================================= */

@media (max-width: 1024px) {
  body.ev-public-menu-open .ev-mkt-header,
  body.ev-mobile-menu-open .ev-mkt-header {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.hc-search-section {
  max-width: 980px;
  margin: -42px auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.hc-search {
  max-width: 760px;
  margin: 0 auto;
}

.hc-search input {
  width: 100%;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  padding: 0 24px;
  font-size: 15px;
  color: #0f172a;
  outline: none;
}

.hc-search input:focus {
  border-color: rgba(219, 39, 119, 0.45);
  box-shadow: 0 24px 80px rgba(219, 39, 119, 0.13);
}

@media (max-width: 768px) {
  .hc-search-section {
    margin: -24px auto 40px;
    padding: 0 18px;
  }

  .hc-search input {
    height: 58px;
    border-radius: 18px;
  }
}

/* ==========================================================
   HelpCenter public pages
   ========================================================== */

.ev-product .hc-hero {
  max-width: 980px;
  margin: -36px auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 1000;
}

.ev-product .hc-search {
  max-width: 760px;
  margin: 0 auto;
}

.ev-product .hc-search input {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  padding: 0 24px;
  font-size: 16px;
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  outline: none;
}

.ev-product .hc-search input::placeholder {
  color: #94a3b8;
}

.ev-product .hc-search input:focus {
  border-color: rgba(212, 20, 127, 0.42);
  box-shadow: 0 24px 80px rgba(212, 20, 127, 0.14);
}

.ev-product .hc-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.ev-product .hc-section + .hc-section {
  margin-top: 42px;
}

.ev-product .hc-section-title {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.03em;
}

.ev-product .hc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ev-product .hc-card {
  display: block;
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.035);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ev-product .hc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 20, 127, 0.18);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

.ev-product .hc-kicker {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #d4147f;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.ev-product .hc-icon {
  margin-bottom: 18px;
}

.ev-product .hc-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  color: #d4147f;
}

.ev-product .hc-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: #111827;
}

.ev-product .hc-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.ev-product .hc-list {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.035);
}

.ev-product .hc-list-item {
  display: block;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  color: #111827;
  text-decoration: none;
  transition: background 0.18s ease;
}

.ev-product .hc-list-item:last-child {
  border-bottom: 0;
}

.ev-product .hc-list-item:hover {
  background: #f8fafc;
}

.ev-product .hc-list-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.ev-product .hc-list-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.ev-product .hc-empty {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  color: #64748b;
}

/* Article HelpCenter */

.ev-product .hc-breadcrumb {
  max-width: 860px;
  font-size: 14px;
  color: #94a3b8;
}

.ev-product .hc-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.ev-product .hc-breadcrumb a:hover {
  color: #d4147f;
}

.ev-product .hc-article {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 48px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.ev-product .hc-article h1 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -0.04em;
}

.ev-product .hc-article-excerpt {
  margin: 0 0 34px;
  font-size: 18px;
  color: #64748b;
}

.ev-product .hc-article-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -14px 0 30px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.ev-product .hc-content {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

.ev-product .hc-content h2 {
  margin: 38px 0 14px;
  font-size: 28px;
  line-height: 1.2;
  color: #111827;
}

.ev-product .hc-content h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #111827;
}

.ev-product .hc-content p {
  margin: 0 0 18px;
}

.ev-product .hc-content ul,
.ev-product .hc-content ol {
  margin: 0 0 22px 24px;
  padding: 0;
}

.ev-product .hc-content li {
  margin-bottom: 8px;
}

.ev-product .hc-content a {
  color: #d4147f;
  font-weight: 700;
  text-decoration: none;
}

.ev-product .hc-content a:hover {
  text-decoration: underline;
}

.ev-product .hc-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid #d4147f;
  border-radius: 14px;
  background: #fdf2f8;
  color: #475569;
}

.ev-product .hc-content table {
  width: 100%;
  margin: 28px 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-collapse: collapse;
}

.ev-product .hc-content th,
.ev-product .hc-content td {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  text-align: left;
}

.ev-product .hc-content th {
  background: #f8fafc;
  color: #111827;
}

.ev-product .hc-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 18px;
}

/* Feedback article */

.ev-product .hc-feedback {
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #f8fafc;
  text-align: center;
}

.ev-product .hc-feedback h2 {
  margin: 0 0 16px;
  font-size: 22px;
  color: #111827;
}

.ev-product .hc-feedback-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ev-product .hc-feedback-actions button {
  padding: 10px 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ev-product .hc-feedback-actions button:hover {
  border-color: #d4147f;
  color: #d4147f;
}

.ev-product .hc-feedback p {
  margin: 0;
  color: #64748b;
}

.ev-product .hc-feedback-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #d4147f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.ev-product .hc-feedback-support:hover {
  filter: brightness(0.96);
}

/* Responsive */

@media (max-width: 900px) {
  .ev-product .hc-hero {
    margin: -24px auto 42px;
    padding: 0 18px;
  }

  .ev-product .hc-search input {
    height: 58px;
    border-radius: 18px;
  }

  .ev-product .hc-section {
    padding: 0 18px;
  }

  .ev-product .hc-grid {
    grid-template-columns: 1fr;
  }

  .ev-product .hc-article {
    margin-top: 40px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .ev-product .hc-article h1 {
    font-size: 34px;
  }
}

.ev-product {
  padding-bottom: 100px;
}

.ev-error404-page {
  padding-bottom: 0 !important;
}

/* ==========================================================
   HelpCenter shared layout
   ========================================================== */

.ev-product .hc-page {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
  padding-block: var(--ev-section-y, 72px);
}

.ev-product .hc-page--article {
  width: min(100% - 48px, 820px);
}

.ev-product .hc-page-header {
  margin-bottom: 40px;
}

.ev-product .hc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 650;
}

.ev-product .hc-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.ev-product .hc-breadcrumb a:hover {
  color: #d4147f;
}

.ev-product .hc-page-title {
  max-width: 920px;
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.ev-product .hc-page-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.65;
}

.ev-product .hc-section {
  margin-top: 0;
}

.ev-product .hc-section + .hc-section {
  margin-top: 42px;
}

.ev-product .hc-section-title {
  margin: 0 0 22px;
  color: #111827;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* Article readable */

.ev-product .hc-article-readable {
  max-width: 100%;
}

.ev-product .hc-article-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 750;
}

.ev-product .hc-content {
  max-width: 760px;
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
}

.ev-product .hc-content > *:first-child {
  margin-top: 0;
}

.ev-product .hc-content p {
  margin: 0 0 20px;
}

.ev-product .hc-content h2 {
  margin: 52px 0 16px;
  color: #111827;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.ev-product .hc-content h3 {
  margin: 38px 0 14px;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.ev-product .hc-content ul,
.ev-product .hc-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.ev-product .hc-content li {
  margin-bottom: 8px;
}

.ev-product .hc-content a {
  color: #d4147f;
  font-weight: 750;
  text-decoration: none;
}

.ev-product .hc-content a:hover {
  text-decoration: underline;
}

.ev-product .hc-content blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  border-left: 4px solid #d4147f;
  border-radius: 16px;
  background: #fdf2f8;
  color: #475569;
}

.ev-product .hc-content img {
  max-width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 18px;
}

.ev-product .hc-content table {
  width: 100%;
  margin: 28px 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-collapse: collapse;
}

.ev-product .hc-content th,
.ev-product .hc-content td {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  text-align: left;
}

.ev-product .hc-content th {
  background: #f8fafc;
  color: #111827;
}

/* Feedback stays as card */

.ev-product .hc-feedback {
  max-width: 760px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.045);
  text-align: center;
}

.ev-product .hc-feedback h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 22px;
}

.ev-product .hc-feedback-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ev-product .hc-feedback-actions button {
  padding: 10px 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ev-product .hc-feedback-actions button:hover {
  border-color: #d4147f;
  color: #d4147f;
}

.ev-product .hc-feedback p {
  margin: 0;
  color: #64748b;
}

.ev-product .hc-feedback-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #d4147f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* Related */

.ev-product .hc-related {
  max-width: 760px;
  margin-top: 64px;
}

@media (max-width: 900px) {
  .ev-product .hc-page,
  .ev-product .hc-page--article {
    width: min(100% - 36px, 1120px);
    padding-block: 52px;
  }

  .ev-product .hc-page-header {
    margin-bottom: 32px;
  }

  .ev-product .hc-page-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .ev-product .hc-page-description {
    font-size: 17px;
  }

  .ev-product .hc-feedback {
    padding: 24px 20px;
  }
}

/* ==========================================================
   HelpCenter article detail
   ========================================================== */


.ev-product .hc-article-readable {
  width: min(100%, 760px);
  margin-inline: auto;
}

.ev-product .hc-article-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 750;
}

.ev-product .hc-content {
  width: min(100%, 760px);
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
}

.ev-product .hc-content > *:first-child {
  margin-top: 0;
}

.ev-product .hc-content p {
  margin: 0 0 20px;
}

.ev-product .hc-content h2 {
  margin: 52px 0 16px;
  color: #111827;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.ev-product .hc-content h3 {
  margin: 38px 0 14px;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.ev-product .hc-content ul,
.ev-product .hc-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.ev-product .hc-content li {
  margin-bottom: 8px;
}

.ev-product .hc-content a {
  color: #d4147f;
  font-weight: 750;
  text-decoration: none;
}

.ev-product .hc-content a:hover {
  text-decoration: underline;
}

.ev-product .hc-content blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  border-left: 4px solid #d4147f;
  border-radius: 16px;
  background: #fdf2f8;
  color: #475569;
}

.ev-product .hc-content img {
  max-width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 18px;
}

.ev-product .hc-content table {
  width: 100%;
  margin: 28px 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-collapse: collapse;
}

.ev-product .hc-content th,
.ev-product .hc-content td {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  text-align: left;
}

.ev-product .hc-content th {
  background: #f8fafc;
  color: #111827;
}

.ev-product .hc-feedback {
  width: 100%;
  max-width: 100%;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.045);
  text-align: center;
}

.ev-product .hc-feedback h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 22px;
}

.ev-product .hc-feedback-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ev-product .hc-feedback-actions button {
  padding: 10px 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ev-product .hc-feedback-actions button:hover {
  border-color: #d4147f;
  color: #d4147f;
}

.ev-product .hc-feedback p {
  margin: 0;
  color: #64748b;
}

.ev-product .hc-feedback-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #d4147f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.ev-product .hc-related {
  width: 100%;
  margin-top: 64px;
}

@media (max-width: 900px) {

  .ev-product .hc-feedback {
    padding: 24px 20px;
  }
}

.ev-comingsoon-page{
  min-height:calc(100vh - 80px);
}

body.ev-body, body.ev-comingsoon-standalone {
  padding:0;
  margin:0;
}

.ev-comingsoon-hero{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(236,72,153,.10), transparent 32%),
    radial-gradient(circle at 20% 72%, rgba(59,130,246,.08), transparent 34%),
    linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}


.ev-comingsoon-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size:42px 42px;
  pointer-events:none;
}

.ev-comingsoon-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) 520px;
  align-items:center;
  gap:72px;
  padding-top:96px;
  padding-bottom:96px;
}

.ev-comingsoon-copy{
  max-width:620px;
}

.ev-comingsoon-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  color:#64748b;
  font-size:.9rem;
  font-weight:800;
  box-shadow:0 16px 40px rgba(15,23,42,.06);
}

.ev-comingsoon-status span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.12);
}

.ev-comingsoon-products{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:34px;
}

.ev-comingsoon-products div{
  padding:18px 18px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(15,23,42,.07);
  box-shadow:0 18px 45px rgba(15,23,42,.05);
}

.ev-comingsoon-products strong{
  display:block;
  margin-bottom:8px;
  color:#111827;
  font-size:1rem;
}

.ev-comingsoon-products p{
  margin:0;
  color:#64748b;
  font-size:.9rem;
  line-height:1.55;
}

.ev-comingsoon-scene{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ev-comingsoon-orbit{
  position:absolute;
  inset:30px;
  border:1px dashed rgba(15,23,42,.12);
  border-radius:50%;
  animation:evComingsoonRotate 18s linear infinite;
}

.ev-comingsoon-orbit span{
  position:absolute;
  padding:8px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  color:#64748b;
  font-size:.78rem;
  font-weight:800;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.ev-comingsoon-orbit span:nth-child(1){top:-12px;left:50%;}
.ev-comingsoon-orbit span:nth-child(2){right:-20px;top:55%;}
.ev-comingsoon-orbit span:nth-child(3){left:-10px;bottom:24%;}

@keyframes evComingsoonRotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.ev-comingsoon-window{
  position:relative;
  width:360px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 34px 90px rgba(15,23,42,.14);
  overflow:hidden;
  transform:rotate(2deg);
  animation:evComingsoonFloat 5s ease-in-out infinite;
}

@keyframes evComingsoonFloat{
  0%,100%{transform:translateY(0) rotate(2deg)}
  50%{transform:translateY(-12px) rotate(1deg)}
}

.ev-comingsoon-window-top{
  display:flex;
  gap:8px;
  padding:18px 20px;
  background:linear-gradient(90deg,#fdf2f8,#f8fafc);
}

.ev-comingsoon-window-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cbd5e1;
}

.ev-comingsoon-window-body{
  padding:28px;
}

.ev-comingsoon-window-title{
  margin-bottom:20px;
  color:#111827;
  font-weight:900;
  font-size:1rem;
}

.ev-comingsoon-line{
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid #eef2f7;
}

.ev-comingsoon-line span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cbd5e1;
}

.ev-comingsoon-line.is-active span{
  background:#ec4899;
}

.ev-comingsoon-line p{
  margin:0;
  color:#64748b;
  font-size:.9rem;
  font-weight:700;
}

.ev-comingsoon-progress{
  height:9px;
  margin-top:24px;
  border-radius:999px;
  background:#eef2f7;
  overflow:hidden;
}

.ev-comingsoon-progress i{
  display:block;
  width:68%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#ec4899,#94a3b8);
  animation:evComingsoonProgress 2.6s ease-in-out infinite alternate;
}

@keyframes evComingsoonProgress{
  from{width:38%}
  to{width:78%}
}

.ev-comingsoon-badge{
  position:absolute;
  right:58px;
  bottom:70px;
  transform:rotate(-8deg);
  padding:12px 16px;
  border-radius:16px;
  border:2px solid rgba(236,72,153,.35);
  color:#db2777;
  background:#fff;
  font-size:.88rem;
  font-weight:900;
  box-shadow:0 18px 38px rgba(236,72,153,.12);
}

@media(max-width:980px){
  .ev-comingsoon-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .ev-comingsoon-scene{
    min-height:380px;
  }
}

@media(max-width:640px){
  .ev-comingsoon-products{
    grid-template-columns:1fr;
  }

  .ev-comingsoon-window{
    width:300px;
  }

  .ev-comingsoon-inner{
    padding-top:64px;
    padding-bottom:64px;
    text-align: center;
  }
}

@media(prefers-reduced-motion:reduce){
  .ev-comingsoon-orbit,
  .ev-comingsoon-window,
  .ev-comingsoon-progress i{
    animation:none!important;
  }
}

.ev-error404-support{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  color:#94a3b8;
  font-size:.92rem;
  font-weight:600;
  flex-wrap:wrap;
}

.ev-error404-support a{
  color:#db2777;
  text-decoration:none;
  font-weight:800;
  transition:opacity .2s ease;
}

.ev-error404-support a:hover{
  opacity:.75;
}

.hc-content ul {
  list-style: disc !important;
  padding-left: 1.5rem !important;
  margin: 1rem 0 !important;
}

.hc-content ol {
  list-style: decimal !important;
  padding-left: 1.5rem !important;
  margin: 1rem 0 !important;
}

.hc-content li {
  margin: 0.35rem 0 !important;

}

.hc-step {
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.hc-note {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(236, 0, 126, 0.06);
  border-left: 4px solid #ec007e;
}

.hc-warning {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
}

.hc-timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 4.25rem;
  counter-reset: hc-step;
}

.hc-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: .4rem;
  bottom: .4rem;
  width: 2px;
  background: rgba(148, 163, 184, .35);
}

.hc-timeline > section {
  position: relative;
  counter-increment: hc-step;
  padding: 0 0 1.8rem;
  margin: 0 0 1.8rem;
  border-bottom: 1px solid rgba(148, 163, 184, .28);
}

.hc-timeline > section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.hc-timeline > section::before {
  content: counter(hc-step);
  position: absolute;
  left: -4.25rem;
  top: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ec007e;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(236, 0, 126, .25);
}

.hc-timeline > section h2,
.hc-timeline > section h3 {
  margin-top: 0;
  margin-bottom: .6rem;
}

.hc-timeline > section p:last-child,
.hc-timeline > section ul:last-child,
.hc-timeline > section ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hc-timeline {
    padding-left: 3.3rem;
  }

  .hc-timeline::before {
    left: 1.05rem;
  }

  .hc-timeline > section::before {
    left: -3.25rem;
    width: 2.1rem;
    height: 2.1rem;
  }
}

.hc-related {
  margin: 4rem 0 2rem;
}

.hc-related-head {
  margin-bottom: 1.1rem;
}

.hc-related-head h2 {
  margin: 0 0 .45rem;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ev-text-main);
}

.hc-related-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ev-text-muted);
}

.hc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hc-related-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 180px;
  padding: 1.45rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hc-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 0, 126, .28);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.hc-related-category {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 800;
  color: #ec007e;
}

.hc-related-title {
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--ev-text-main);
}

.hc-related-excerpt {
  color: var(--ev-text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hc-related-grid {
    grid-template-columns: 1fr;
  }
}

.hc-article-readable figure.image,
.hc-article-readable figure.hc-image {
  margin: 2rem 0;
}

.hc-article-readable figure.image img,
.hc-article-readable figure.hc-image img,
.hc-article-readable img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.hc-article-readable figcaption {
  margin-top: .7rem;
  text-align: center;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--ev-text-muted);
}

.hc-note,
.hc-warning,
.hc-security,
.hc-tip {
  position: relative;
  margin: 1.5rem 0;
  padding: 1rem 1.2rem 1rem 3.1rem;
  border-radius: 18px;
  line-height: 1.65;
  border: 1px solid rgba(15, 23, 42, .08);
}

.hc-note::before,
.hc-warning::before,
.hc-security::before,
.hc-tip::before {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 800;
}

.hc-note {
  background: rgba(59, 130, 246, .07);
}

.hc-note::before {
  content: "i";
  background: rgba(59, 130, 246, .15);
  color: #2563eb;
}

.hc-warning {
  background: rgba(245, 158, 11, .08);
}

.hc-warning::before {
  content: "!";
  background: rgba(245, 158, 11, .18);
  color: #b45309;
}

.hc-security {
  background: rgba(236, 0, 126, .06);
}

.hc-security::before {
  content: "🔒";
  background: rgba(236, 0, 126, .12);
  color: #ec007e;
}

.hc-tip {
  background: rgba(16, 185, 129, .08);
}

.hc-tip::before {
  content: "✓";
  background: rgba(16, 185, 129, .16);
  color: #059669;
}

.hc-article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem 0 2rem;
}

.hc-article-nav-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hc-article-nav-card:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 0, 126, .25);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.hc-article-nav-card span {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ec007e;
}

.hc-article-nav-card strong {
  color: var(--ev-text-main);
  line-height: 1.3;
}

.hc-article-nav-card--next {
  text-align: right;
}

@media (max-width: 700px) {
  .hc-article-nav {
    grid-template-columns: 1fr;
  }

  .hc-article-nav-card--next {
    text-align: left;
  }
}

.ev-support-ticket-page .ev-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .035);
}

.ev-upload-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ev-upload-step-head > span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fdf2f8;
  color: #db2777;
  font-weight: 900;
  flex: 0 0 auto;
}

.drop-zone-download {
  min-height: 210px;
  padding: 34px 24px;
  border: 1.5px dashed rgba(239, 10, 106, .28);
  border-radius: 24px;
  text-align: center;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.drop-zone-download.is-dragover {
  border-color: #ef0a6a;
  background: #fdf2f8;
  box-shadow: 0 24px 60px rgba(239, 10, 106, .14);
  transform: translateY(-1px);
}

.ev-files-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.ev-files-th {
  padding: 12px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.ev-files-td {
  padding: 12px;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.ev-empty-state {
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  color: #94a3b8;
  text-align: center;
  font-weight: 700;
}

.ev-support-file-remove {
  color: #be185d;
  font-weight: 800;
  font-size: 12px;
}

.ev-upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .48);
  backdrop-filter: blur(4px);
}

.ev-upload-overlay.hidden {
  display: none !important;
}

.ev-upload-overlay__card {
  width: min(420px, calc(100vw - 32px));
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
  text-align: center;
}

.ev-upload-overlay__ring {
  --progress: 0%;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle closest-side, #fff 74%, transparent 76%),
    conic-gradient(#ef0a6a var(--progress), #f1f5f9 0);
}

.ev-upload-overlay__ring span {
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ev-upload-overlay__card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.ev-upload-overlay__card p {
  margin: 8px auto 18px;
  max-width: 320px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.ev-upload-overlay__details {
  margin: 16px 0 18px;
  text-align: left;
}

.ev-upload-overlay__current {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.ev-upload-overlay__files {
  display: grid;
  gap: 6px;
  max-height: 130px;
  overflow-y: auto;
}

.ev-upload-overlay__file {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.ev-upload-overlay__file.is-current {
  background: #fdf2f8;
  color: #be185d;
}

.ev-upload-overlay__file.is-done {
  color: #16a34a;
}

.ev-upload-overlay__thinking {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 14px;
  color: #be185d;
  font-size: 13px;
  font-weight: 800;
}

.ev-upload-overlay__thinking.is-active {
  display: flex;
}

.ev-upload-overlay__thinking span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef0a6a;
  animation: evUploadThinking 1s infinite ease-in-out;
}

.ev-upload-overlay__thinking span:nth-child(2) {
  animation-delay: .15s;
}

.ev-upload-overlay__thinking span:nth-child(3) {
  animation-delay: .3s;
}

.ev-upload-overlay__bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f5f9;
}

.ev-upload-overlay__bar > div {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: var(--ev-gradient-brand, linear-gradient(90deg, #ef0a6a, #b6359c));
  transition: width .15s ease;
  position: relative;
  overflow: hidden;
}

.ev-upload-overlay__bar > div::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: evUploadBarShine 1.4s infinite;
}

@keyframes evUploadThinking {
  0%, 80%, 100% {
    transform: scale(.7);
    opacity: .45;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes evUploadBarShine {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 640px) {
  .drop-zone-download {
    min-height: 180px;
    padding: 26px 18px;
    border-radius: 20px;
  }

  .ev-upload-step-head {
    gap: 10px;
  }

  .ev-upload-step-head > span {
    width: 30px;
    height: 30px;
  }
}

.ev-support-upload-zone {
  cursor: pointer;
}

.ev-support-upload-zone .ev-btn-primary,
.ev-support-upload-zone .ev-support-file-remove {
  position: relative;
  z-index: 2;
}

.ev-support-file-remove {
  margin-top: 10px;
  color: #be185d;
  font-size: 12px;
  font-weight: 800;
}

.ev-support-success {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fdf2f8, #fff);
  border: 1px solid rgba(239, 10, 106, .22);
}

.ev-support-success__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ev-gradient-brand);
  color: #fff;
  font-weight: 900;
}

.ev-support-success__title {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.ev-support-success__number {
  margin: 4px 0 14px;
  color: #64748b;
  font-size: 13px;
}

.ev-support-success__number strong {
  color: #be185d;
  font-weight: 900;
}

.ev-support-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .ev-support-success {
    flex-direction: column;
  }

  .ev-support-success__actions {
    flex-direction: column;
  }

  .ev-support-success__actions .ev-btn-primary,
  .ev-support-success__actions .ev-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.ev-auth-password-wrap {
  position: relative;
}



.ev-password-rules {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.ev-password-rules-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ev-password-rules ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ev-password-rules li {
  font-size: 13px;
  color: #94a3b8;
  transition: .2s ease;
}

.ev-password-rules li.is-valid {
  color: #10b981;
}

.ev-password-match {
  margin-top: 10px;
  font-size: 13px;
}

.ev-password-match.is-success {
  color: #10b981;
}

.ev-password-match.is-error {
  color: #ef4444;
}

.hidden {
  display: none;
}









.ev-password-rules {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.ev-password-rules-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.ev-password-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-password-rules li {
  margin: 0 0 10px;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.25;
  transition: color .15s ease;
}

.ev-password-rules li.is-valid {
  color: #10b981;
  font-weight: 600;
}

.ev-password-match {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.35;
}

.ev-password-match.is-success {
  color: #10b981;
}

.ev-password-match.is-error {
  color: #ef4444;
}

.hidden {
  display: none !important;
}

/* =========================================================
   EV AUTH FORMS — Login / Signup clean mobile-safe version
========================================================= */

.ev-auth-page,
.ev-login-page {
  min-height: 100vh;
  padding: 8.5rem 1rem 5rem;
  background:
    radial-gradient(circle at top, rgba(239, 10, 106, .07), transparent 32rem),
    var(--ev-bg-soft);
}

.ev-auth-wrap,
.ev-login-wrap {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.ev-auth-head,
.ev-login-head {
  margin-bottom: 2rem;
  text-align: center;
}

.ev-auth-kicker,
.ev-login-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ev-color-brand-pink);
}

.ev-auth-title,
.ev-login-title {
  margin: .5rem 0 0;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ev-text-main);
}

.ev-auth-text,
.ev-login-text {
  margin: .8rem 0 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ev-text-muted);
}

.ev-auth-card,
.ev-login-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--ev-border-subtle);
  background: var(--ev-bg-surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.ev-auth-form,
.ev-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ev-auth-field,
.ev-login-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.ev-auth-field label,
.ev-login-field label {
  font-size: .88rem;
  font-weight: 650;
  color: var(--ev-text-main);
}

.ev-auth-input,
.ev-login-input,
.ev-auth-password-input,
.ev-login-password-input {
  width: 100%;
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: .85rem;
  background: #fff;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 .9rem;
  outline: none;
  box-sizing: border-box;
}

.ev-auth-input:focus,
.ev-login-input:focus,
.ev-auth-password-row:focus-within,
.ev-login-password-row:focus-within {
  border-color: var(--ev-color-brand-pink);
  box-shadow: 0 0 0 3px rgba(239, 10, 106, .16);
}

.ev-auth-password-row,
.ev-login-password-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: .85rem;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.ev-auth-password-row input,
.ev-login-password-row input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 .9rem;
  outline: none;
  box-sizing: border-box;
}

.ev-auth-password-input.is-masked,
.ev-login-password-input.is-masked {
  -webkit-text-security: disc;
  text-security: disc;
}

.ev-auth-password-toggle,
.ev-login-password-toggle {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ev-auth-password-toggle svg,
.ev-login-password-toggle svg {
  width: 19px;
  height: 19px;
  pointer-events: none;
}

.ev-auth-submit,
.ev-login-submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.4rem;
  color: #fff;
  background: var(--ev-gradient-brand);
  font-size: .92rem;
  font-weight: 750;
  cursor: pointer;
}

.ev-auth-alt,
.ev-login-signup {
  margin: 1rem 0 0;
  text-align: center;
  font-size: .8rem;
  color: var(--ev-text-muted);
}

.ev-auth-alt a,
.ev-login-signup a,
.ev-login-forgot a {
  color: var(--ev-color-brand-pink);
  font-weight: 650;
  text-decoration: none;
}

.ev-login-forgot {
  text-align: right;
  font-size: .78rem;
}

.ev-auth-field-error,
.ev-login-field-error {
  margin: .2rem 0 0;
  font-size: .75rem;
  color: var(--ev-danger);
}

.ev-password-rules {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.ev-password-rules-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.ev-password-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-password-rules li {
  margin: 0 0 8px;
  font-size: 13px;
  color: #94a3b8;
}

.ev-password-rules li.is-valid,
.ev-password-match.is-success {
  color: #10b981;
  font-weight: 600;
}

.ev-password-match.is-error {
  color: #ef4444;
}

@media (max-width: 640px) {
  .ev-auth-page,
  .ev-login-page {
    padding: 6rem 1rem 6rem;
  }
}
