:root {
  --bg: #07080d;
  --bg-panel: #0e1018;
  --bg-panel-2: #12141f;
  --line: #1e2130;
  --text: #e7e9f2;
  --text-dim: #8890a6;
  --signal: #22e5a8;      /* pulse / "vue" accent */
  --violet: #7c5cff;
  --danger: #ff5c72;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(120% 120% at 50% -10%, #12162a 0%, var(--bg) 55%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
}

h1, h2, h3, .brand {
  font-family: 'Space Grotesk', sans-serif;
}

a { color: var(--signal); }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lang-select {
  appearance: none;
  width: auto;
  padding: 6px 28px 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #0e1018 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238890a6'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--text-dim);
}
.lang-select:focus { outline: none; border-color: var(--signal); color: var(--text); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(34,229,168,0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,229,168,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34,229,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,229,168,0); }
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.nav-links a { color: var(--text-dim); text-decoration: none; }
.nav-links a:hover { color: var(--text); }

.hero {
  text-align: center;
  padding: 34px 0 18px;
}
.hero h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.hero h1 span { color: var(--signal); }
.hero p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

.panel {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 26px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 6px;
}
label:first-child { margin-top: 0; }

input, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0b0d15;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--signal);
}

.phone-row {
  display: flex;
  gap: 8px;
}
.phone-row select { flex: 0 0 42%; }
.phone-row input { flex: 1; }

/* ---- Selektè peyi pwofesyonèl (drapo + rechèch) ---- */
.country-select {
  position: relative;
  flex: 0 0 118px;
}
.country-trigger {
  width: 100%;
  height: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0b0d15;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .12s ease;
}
.country-trigger:hover { border-color: var(--signal); }
.country-trigger .flag { font-size: 18px; line-height: 1; flex: 0 0 auto; }
.country-trigger .dial-code { white-space: nowrap; }
.country-trigger .chev { margin-left: auto; color: var(--text-dim); flex: 0 0 auto; transition: transform .15s ease; }
.country-trigger.open { border-color: var(--signal); }
.country-trigger.open .chev { transform: rotate(180deg); }

.country-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  width: 272px;
  max-width: 82vw;
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  overflow: hidden;
}
.country-search {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}
.country-search:focus { outline: none; border-color: var(--line); }
.country-list { max-height: 260px; overflow-y: auto; }
.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}
.country-item:hover { background: rgba(34,229,168,0.08); }
.country-item.active { background: rgba(34,229,168,0.14); }
.country-item .flag { font-size: 16px; flex: 0 0 auto; }
.country-item .c-name {
  flex: 1;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-item.active .c-name { color: var(--signal); }
.country-item .c-dial { color: var(--text-dim); font-size: 13px; flex: 0 0 auto; }

.hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  width: 100%;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--signal), #17c495);
  color: #04150f;
  transition: transform .12s ease, filter .12s ease;
}
button:hover { filter: brightness(1.08); }
button:active { transform: scale(0.98); }
button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
button.danger {
  background: linear-gradient(135deg, var(--danger), #c23c53);
  color: #1a0508;
}
button:disabled { opacity: .5; cursor: not-allowed; }

.msg {
  margin-top: 14px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}
.msg.show { display: block; }
.msg.ok { background: rgba(34,229,168,0.1); color: var(--signal); border: 1px solid rgba(34,229,168,0.3); }
.msg.err { background: rgba(255,92,114,0.1); color: var(--danger); border: 1px solid rgba(255,92,114,0.3); }

.stat-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}
.stat-track {
  flex: 1;
  height: 6px;
  border-radius: 6px;
  background: #171a26;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--signal));
}

/* ================= CAPACITY BANNER ================= */
.capacity-banner {
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(124,92,255,0.12), rgba(34,229,168,0.12));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.capacity-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.capacity-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--signal);
}
.capacity-icon svg { width: 100%; height: 100%; display: block; }
.capacity-info { flex: 0 0 auto; min-width: 0; }
.capacity-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-dim);
}
.capacity-numbers {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}
.capacity-numbers .muted { color: var(--text-dim); font-weight: 500; }
.capacity-track {
  flex: 1;
  height: 6px;
  min-width: 40px;
  border-radius: 6px;
  background: #171a26;
  overflow: hidden;
}
.capacity-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--signal));
  transition: width .6s ease;
}
.capacity-pct {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
  min-width: 38px;
  text-align: right;
}
@media (max-width: 480px) {
  .capacity-label { display: none; }
  .capacity-inner { gap: 10px; padding: 8px 16px; }
}

/* ================= GUIDED TOUR ================= */
.tour-scrim {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(3,4,8,0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.tour-scrim.show { opacity: 1; pointer-events: auto; }

.tour-spotlight {
  position: fixed;
  z-index: 251;
  border-radius: 14px;
  box-shadow: 0 0 0 4px rgba(34,229,168,0.55), 0 0 0 9999px rgba(3,4,8,0.6);
  transition: top .3s ease, left .3s ease, width .3s ease, height .3s ease;
  pointer-events: none;
}

.tour-tooltip {
  position: fixed;
  z-index: 252;
  max-width: 300px;
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: top .3s ease, left .3s ease;
}
.tour-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 6px;
}
.tour-tooltip h4 {
  margin: 0 0 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--text);
}
.tour-tooltip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}
.tour-dots { display: flex; gap: 5px; }
.tour-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background .2s ease, transform .2s ease;
}
.tour-dot.active { background: var(--signal); transform: scale(1.3); }
.tour-actions { display: flex; gap: 8px; align-items: center; }
.tour-skip {
  background: none; border: none; color: var(--text-dim);
  font-size: 12px; cursor: pointer; padding: 6px 4px;
}
.tour-skip:hover { color: var(--text); }
.tour-next {
  background: linear-gradient(135deg, var(--signal), #17c495);
  color: #04150f;
  border: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}
.tour-next:hover { filter: brightness(1.05); }

.tour-replay-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--bg-panel-2);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.tour-replay-btn:hover { border-color: var(--signal); color: var(--signal); }

/* ================= TRUST: TESTIMONIALS ================= */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 14px;
}
.trust-section { margin-top: 4px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi-card {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
}
.testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.testi-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #04150f;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-stars { font-size: 11px; color: var(--signal); letter-spacing: 1px; }
.testi-quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ================= TRUST: FAQ ================= */
.faq-section { margin-top: 4px; }
.faq-item {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 4px 16px;
  margin-bottom: 8px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--text-dim);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--signal); }
.faq-item p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 10px;
}
th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
td:first-child, th:first-child { white-space: normal; }
th { color: var(--text-dim); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }

.name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--signal));
  color: #05070d;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  table { min-width: 100%; }
  th, td { padding: 9px 6px; font-size: 13px; }
}

.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.pager button { width: auto; margin: 0; padding: 8px 16px; font-size: 13px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.social-link:hover { color: var(--signal); border-color: var(--signal); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

.footer-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 14px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.panel-header h3 { margin: 0; }
.btn-auto { width: auto; margin: 0; }

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--text-dim);
}

/* ---- Ikòn SVG ki ranplase emoji nan non yo ---- */
.doberto-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--signal);
  margin-left: 2px;
}
.doberto-icon svg { width: 100%; height: 100%; }

.name-prefix {
  color: var(--text-dim);
  font-weight: 600;
  margin-right: 4px;
}

/* ---- Aksyon nan tablo admin (modifye / suprime) ---- */
.row-actions {
  display: flex;
  gap: 6px;
}
.icon-btn {
  width: auto;
  margin: 0;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
}
.icon-btn.edit-btn {
  background: rgba(124,92,255,0.14);
  color: var(--violet);
  border: 1px solid rgba(124,92,255,0.3);
}
.icon-btn.delete-btn {
  background: rgba(255,92,114,0.1);
  color: var(--danger);
  border: 1px solid rgba(255,92,114,0.3);
}

/* ---- Modal pou modifye yon moun ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,5,10,0.72);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  z-index: 100;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.modal-box h3 { margin-top: 0; }
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.modal-actions button { margin-top: 0; }

/* ================================================================
   ANIMASYON ANTRE SOU PAJ LA + POPUP "ENSTALE APLIKASYON AN"
   ================================================================ */

/* Antre pwogresif eleman prensipal yo lè paj la fèk chaje */
.topbar, .hero, .panel, .social-row, .footer-note {
  opacity: 0;
  transform: translateY(14px);
  animation: dvFadeUp 0.6s cubic-bezier(.22,.9,.32,1) forwards;
}
.topbar        { animation-delay: .02s; }
.hero          { animation-delay: .12s; }
.panel:nth-of-type(1) { animation-delay: .22s; }
.panel:nth-of-type(2) { animation-delay: .32s; }
.social-row    { animation-delay: .40s; }
.footer-note   { animation-delay: .46s; }

@keyframes dvFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Overlay enstalasyon (style "app store" / PWA) ---- */
.install-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(4,5,10,0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.install-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 560px) {
  .install-overlay { align-items: center; }
}

.install-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  padding: 30px 24px 26px;
  text-align: center;
  transform: translateY(60px) scale(.98);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.9,.25,1.2), opacity .35s ease;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.45);
}
@media (min-width: 560px) {
  .install-card { border-radius: 22px; }
}
.install-overlay.show .install-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.install-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.install-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }

.install-icon {
  width: 86px;
  height: 86px;
  margin: 4px auto 16px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 24px rgba(124,92,255,0.35);
  animation: dvIconPop .6s cubic-bezier(.2,.9,.25,1.3) .15s both;
}
@keyframes dvIconPop {
  0%   { transform: scale(.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.install-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34,229,168,0.12);
  border: 1px solid rgba(34,229,168,0.3);
  color: var(--signal);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.install-badge svg { width: 14px; height: 14px; }

.install-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.install-card .install-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.install-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.install-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.install-feature .ico {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124,92,255,0.14);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-feature .ico svg { width: 18px; height: 18px; }
.install-feature strong { display: block; font-size: 14px; }
.install-feature span { display: block; font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }

.install-btn {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #04150f;
  background: linear-gradient(135deg, var(--violet), var(--signal));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.install-btn:active { transform: scale(.98); }
.install-btn svg { width: 18px; height: 18px; }

.install-later {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.install-handle {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  margin: 0 auto 18px;
}

/* ================= PAJ MÈSI (apre enskripsyon) ================= */
.mesi-hero {
  text-align: center;
  padding: 40px 0 6px;
  opacity: 0;
  transform: translateY(14px);
  animation: dvFadeUp 0.6s cubic-bezier(.22,.9,.32,1) forwards;
  animation-delay: .05s;
}
.mesi-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04150f;
  background: linear-gradient(135deg, var(--signal), #17c495);
  box-shadow: 0 0 0 8px rgba(34,229,168,0.1);
}
.mesi-check svg { width: 30px; height: 30px; }
.mesi-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--signal);
  background: rgba(34,229,168,0.1);
  border: 1px solid rgba(34,229,168,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.mesi-hero h1,
.mesi-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mesi-title-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--signal);
}
.mesi-hero p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.mesi-share-panel, .mesi-manual-panel {
  opacity: 0;
  transform: translateY(14px);
  animation: dvFadeUp 0.6s cubic-bezier(.22,.9,.32,1) forwards;
}
.mesi-share-panel { animation-delay: .16s; }
.mesi-manual-panel { animation-delay: .26s; text-align: center; }

.mesi-share-btn {
  background: linear-gradient(135deg, #25d366, #17c495);
  color: #04150f;
  font-size: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mesi-btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mesi-secondary-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.mesi-secondary-row .secondary,
.mesi-secondary-row .mesi-wa-link {
  margin-top: 0;
  flex: 1;
  font-size: 13px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mesi-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}
.mesi-wa-link:hover { border-color: var(--signal); color: var(--signal); }

.mesi-link-box {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed var(--line);
  background: #0b0d15;
  color: var(--text-dim);
  font-size: 13px;
  word-break: break-all;
}

.mesi-links-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(14px);
  animation: dvFadeUp 0.6s cubic-bezier(.22,.9,.32,1) forwards;
  animation-delay: .34s;
}
.mesi-text-link {
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: underline;
}
.mesi-text-link:hover { color: var(--signal); }

@media (max-width: 480px) {
  .mesi-secondary-row { flex-direction: column; }
}


/* ============================================================
   DOBERTO VCF — PROFESSIONAL UI REFRESH
   Visual-only overrides. Existing JS behavior remains unchanged.
   ============================================================ */
:root {
  --bg: #05070b;
  --bg-panel: rgba(13, 17, 26, .84);
  --bg-panel-2: rgba(18, 23, 35, .92);
  --line: rgba(255,255,255,.085);
  --line-strong: rgba(255,255,255,.14);
  --text: #f6f8fb;
  --text-dim: #98a2b3;
  --signal: #35e6ad;
  --violet: #826cff;
  --danger: #ff667f;
  --radius: 20px;
  --shadow-lg: 0 24px 70px rgba(0,0,0,.32);
  --shadow-sm: 0 10px 30px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(130,108,255,.16), transparent 62%),
    radial-gradient(760px 460px at 88% 8%, rgba(53,230,173,.10), transparent 62%),
    linear-gradient(180deg, #080b12 0%, var(--bg) 42%, #05070b 100%);
  background-attachment: fixed;
  letter-spacing: -.005em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 72%);
  z-index: -1;
}

.container {
  max-width: 780px;
  padding: 42px 22px 88px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 80;
  max-width: 780px;
  margin: 12px auto 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,11,18,.78);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  gap: 11px;
  font-size: 17px;
  letter-spacing: .055em;
}

.brand .dot {
  width: 11px;
  height: 11px;
  box-shadow: 0 0 22px rgba(53,230,173,.42);
}

.topbar-right { gap: 12px; }
.nav-links { gap: 6px; }
.nav-links a {
  padding: 8px 11px;
  border-radius: 10px;
  color: #aeb7c5;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.055);
  transform: translateY(-1px);
}

.lang-select {
  min-height: 34px;
  border-color: var(--line);
  background-color: rgba(255,255,255,.035);
  color: #c9d0dc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.capacity-banner {
  max-width: 780px;
  margin: 12px auto 0;
  border: 1px solid rgba(53,230,173,.13);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(130,108,255,.11), rgba(53,230,173,.08));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.capacity-inner { max-width: none; padding: 12px 15px; }
.capacity-track { height: 7px; background: rgba(255,255,255,.07); }
.capacity-fill { box-shadow: 0 0 20px rgba(53,230,173,.28); }

.hero {
  padding: 54px 0 24px;
}
.hero h1 {
  max-width: 680px;
  margin: 0 auto 16px;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero h1 span[style*="var(--signal)"] {
  background: linear-gradient(135deg, #65f2c5, #9b88ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.hero p {
  max-width: 610px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #a6afbd;
}

.panel {
  position: relative;
  overflow: visible;
  padding: 28px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 26%),
    linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.035);
}
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 26%);
}

label {
  margin: 18px 0 8px;
  color: #b4bdca;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .02em;
}

input, select {
  min-height: 49px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4,7,12,.68);
  color: #f5f7fa;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder { color: #687386; }
input:hover, select:hover { border-color: rgba(255,255,255,.16); }
input:focus, select:focus {
  border-color: rgba(53,230,173,.72);
  background: rgba(4,7,12,.9);
  box-shadow: 0 0 0 4px rgba(53,230,173,.09);
}

.country-trigger {
  min-height: 49px;
  border-radius: 13px;
  background: rgba(4,7,12,.68);
}
.country-panel {
  border-color: var(--line-strong);
  border-radius: 15px;
  background: rgba(13,17,26,.98);
  box-shadow: 0 24px 60px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

button {
  min-height: 50px;
  margin-top: 24px;
  border-radius: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #57efc0, #2fd6a3);
  box-shadow: 0 12px 28px rgba(53,230,173,.16), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
button:hover {
  filter: brightness(1.045);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(53,230,173,.2), inset 0 1px 0 rgba(255,255,255,.38);
}
button.secondary {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line-strong);
  box-shadow: none;
  color: #e8ebf1;
}
button.secondary:hover { background: rgba(255,255,255,.055); }

.hint { color: #7f899a; line-height: 1.55; }
.msg { border-radius: 12px; line-height: 1.5; }

.section-title {
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: -.02em;
  color: #f5f7fa;
}

.testi-grid { gap: 12px; }
.testi-card {
  border-color: var(--line);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255,255,255,.034), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.testi-avatar { box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.testi-quote { line-height: 1.65; }

.faq-item {
  border-color: var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.018);
  transition: border-color .2s ease, background .2s ease;
}
.faq-item:hover { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.025); }
.faq-item[open] { border-color: rgba(53,230,173,.18); background: rgba(53,230,173,.025); }

.sponsor-panel {
  text-align: center;
  overflow: hidden;
  border-color: rgba(130,108,255,.18);
  background:
    radial-gradient(440px 180px at 50% 0%, rgba(130,108,255,.12), transparent 70%),
    linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
}
.sponsor-copy { margin: 0 0 13px !important; }
.sponsor-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 46px;
  padding: 12px 22px !important;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px !important;
  background: linear-gradient(135deg, #8d78ff, #51e9ba) !important;
  color: #06120f !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(76,203,169,.14);
  transition: transform .16s ease, filter .16s ease;
}
.sponsor-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

.table-scroll {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(4,7,12,.42);
}
table { border-collapse: separate; border-spacing: 0; }
th {
  background: rgba(255,255,255,.028);
  color: #9da7b7;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
th, td { padding: 15px 16px; }
tbody tr { transition: background .15s ease; }
tbody tr:hover { background: rgba(53,230,173,.025); }
.pager { gap: 12px; margin-top: 16px; }
.pager button { min-height: 42px; margin-top: 0; border-radius: 11px; }
.badge { border-radius: 999px; }

.social-row { gap: 9px; margin-top: 30px; }
.social-link {
  width: 42px;
  height: 42px;
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.social-link:hover {
  border-color: rgba(53,230,173,.38);
  background: rgba(53,230,173,.055);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.footer-note { margin-top: 19px; color: #667184; }

.mesi-hero { padding-top: 52px; }
.mesi-check {
  width: 72px;
  height: 72px;
  box-shadow: 0 0 0 10px rgba(53,230,173,.08), 0 18px 45px rgba(53,230,173,.14);
}
.mesi-badge { padding: 6px 13px; }
.mesi-hero h1, .mesi-title {
  font-size: clamp(30px, 6vw, 42px);
  letter-spacing: -.04em;
}
.mesi-hero p { line-height: 1.72; }
.mesi-share-btn {
  background: linear-gradient(135deg, #35df79, #22c78f);
  box-shadow: 0 14px 34px rgba(37,211,102,.14);
}
.mesi-wa-link, .mesi-secondary-row .secondary { border-radius: 12px; }
.mesi-link-box { border-radius: 13px; background: rgba(4,7,12,.55); }

@media (max-width: 700px) {
  .topbar {
    top: 8px;
    width: calc(100% - 24px);
    margin-top: 8px;
  }
  .container { padding: 32px 16px 68px; }
  .capacity-banner { width: calc(100% - 24px); }
  .hero { padding-top: 42px; }
  .panel { padding: 22px; border-radius: 18px; }
}

@media (max-width: 520px) {
  .topbar { align-items: center; flex-wrap: nowrap; padding: 10px 11px; }
  .brand { font-size: 14px; white-space: nowrap; }
  .brand .dot { width: 9px; height: 9px; }
  .topbar-right { gap: 7px; margin-left: auto; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 7px 7px; font-size: 11px; }
  .lang-select { padding-left: 9px; padding-right: 25px; font-size: 10.5px; }
  .capacity-inner { gap: 9px; padding: 10px 12px; }
  .hero h1 { font-size: clamp(36px, 11vw, 46px); }
  .hero p { font-size: 14px; }
  .panel { padding: 19px; }
  .phone-row { gap: 7px; }
  .country-select { flex-basis: 112px; }
  input, select, .country-trigger { min-height: 48px; }
  .testi-card { border-radius: 15px; }
  th, td { padding: 13px 12px; }
  .pager { flex-wrap: wrap; }
  .pager button { flex: 1; }
  .mesi-hero { padding-top: 42px; }
}

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

/* ============================================================
   DOBERTO VCF — ADMIN VISIBILITY + TYPOGRAPHY FIX
   ============================================================ */

/* Tipografi dwat/nòmal sou tout sit la */
body,
body * {
  font-style: normal;
}

body,
input,
select,
button,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.brand {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6, .brand {
  letter-spacing: -0.02em;
}

/* Admin: plis espas pou tablo ak aksyon yo */
body:has(#adminPanel) .container,
body:has(#loginPanel) .container {
  max-width: 1080px;
}

body:has(#adminPanel) .topbar,
body:has(#loginPanel) .topbar {
  max-width: 1080px;
}

#adminPanel {
  overflow: visible;
}

#adminPanel .panel-header {
  align-items: center;
  gap: 16px;
}

#adminPanel .table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(53,230,173,.5) rgba(255,255,255,.04);
}

#adminPanel .table-scroll::-webkit-scrollbar {
  height: 9px;
}

#adminPanel .table-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

#adminPanel .table-scroll::-webkit-scrollbar-thumb {
  background: rgba(53,230,173,.48);
  border-radius: 999px;
}

#adminPanel table {
  width: 100%;
  min-width: 900px;
}

#adminPanel th:last-child,
#adminPanel td:last-child {
  min-width: 190px;
  position: sticky;
  right: 0;
  z-index: 3;
}

#adminPanel th:last-child {
  background: #111722;
  z-index: 5;
}

#adminPanel td:last-child {
  background: #0b1018;
  box-shadow: -12px 0 22px rgba(5,7,11,.38);
}

#adminPanel tbody tr:hover td:last-child {
  background: #0d151d;
}

#adminPanel .row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}

#adminPanel .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 38px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

#adminPanel .icon-btn.edit-btn {
  color: #d9d2ff;
  background: rgba(130,108,255,.16);
  border: 1px solid rgba(130,108,255,.42);
}

#adminPanel .icon-btn.edit-btn:hover {
  color: #fff;
  background: rgba(130,108,255,.28);
}

#adminPanel .icon-btn.delete-btn {
  color: #ffacba;
  background: rgba(255,102,127,.12);
  border: 1px solid rgba(255,102,127,.38);
}

#adminPanel .icon-btn.delete-btn:hover {
  color: #fff;
  background: rgba(255,102,127,.24);
}

/* Modal modifye nimewo a pi klè */
#editOverlay .modal-box {
  max-width: 500px;
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

#editOverlay .modal-box h3 {
  margin-bottom: 20px;
}

#editOverlay .phone-row {
  align-items: stretch;
}

#editOverlay #editPhone {
  min-width: 0;
}

#editOverlay .modal-actions button {
  min-height: 46px;
}

@media (max-width: 700px) {
  body:has(#adminPanel) .container,
  body:has(#loginPanel) .container {
    max-width: 100%;
  }

  #adminPanel {
    padding: 18px;
  }

  #adminPanel .panel-header {
    align-items: flex-start;
  }

  #adminPanel .table-scroll {
    margin-top: 4px;
  }

  #adminPanel th:last-child,
  #adminPanel td:last-child {
    min-width: 184px;
  }

  #adminPanel .icon-btn {
    min-width: 78px;
  }
}


/* ===== DOBERTO VCF ADMIN PRO V2 — visible redesign ===== */
html, body { font-style: normal !important; }
body, body *:not(svg):not(path) { font-style: normal !important; }
body { font-family: Inter, Arial, Helvetica, sans-serif !important; }

.admin-shell {
  border: 1px solid rgba(82, 228, 184, .22) !important;
  background: linear-gradient(180deg, rgba(15,22,31,.98), rgba(8,13,20,.98)) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.38) !important;
}
.admin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(53,230,173,.22);
  border-radius: 999px;
  background: rgba(53,230,173,.07);
  color: #7ff3cf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.admin-tools { display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.admin-search-label { color:#eef3f8; font-size:14px; font-weight:700; }

#adminPanel .table-scroll {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 16px !important;
  overflow-x: auto !important;
  background: #091019 !important;
}
#adminPanel table { min-width: 940px !important; }
#adminPanel th {
  background:#121b27 !important;
  color:#aeb9c7 !important;
  font-size:11px !important;
  font-weight:800 !important;
}
#adminPanel td { background:#0b121b; vertical-align:middle; }
#adminPanel tbody tr:nth-child(even) td { background:#0d151f; }
#adminPanel tbody tr:hover td { background:#101c26; }
#adminPanel th:last-child, #adminPanel td:last-child {
  position: sticky !important;
  right: 0 !important;
  min-width: 215px !important;
  z-index: 4 !important;
  box-shadow: -14px 0 24px rgba(0,0,0,.3) !important;
}
#adminPanel th:last-child { background:#162130 !important; }
#adminPanel td:last-child { background:#101925 !important; }
#adminPanel .row-actions { display:flex !important; gap:8px !important; }
#adminPanel .icon-btn {
  display:inline-flex !important;
  visibility:visible !important;
  opacity:1 !important;
  min-width:96px !important;
  min-height:42px !important;
  margin:0 !important;
  padding:10px 13px !important;
  font-size:13px !important;
  font-weight:800 !important;
  border-radius:11px !important;
  cursor:pointer !important;
}
#adminPanel .edit-btn {
  color:#0b1420 !important;
  background:#73e9c6 !important;
  border:1px solid #73e9c6 !important;
}
#adminPanel .delete-btn {
  color:#fff !important;
  background:#d94e68 !important;
  border:1px solid #ee6b82 !important;
}
#adminPanel .edit-btn:hover, #adminPanel .delete-btn:hover { filter:brightness(1.08); transform:translateY(-1px); }

#editOverlay { background:rgba(2,5,10,.78) !important; backdrop-filter:blur(8px); }
#editOverlay .modal-box {
  background:#0d1621 !important;
  border:1px solid rgba(115,233,198,.24) !important;
  border-radius:18px !important;
}
#editOverlay .modal-actions { gap:10px !important; }
#editOverlay #editSaveBtn { background:#73e9c6 !important; color:#07130f !important; }

@media (max-width: 700px) {
  #adminPanel { padding:16px !important; }
  #adminPanel .panel-header { display:flex; flex-direction:column; align-items:stretch !important; }
  #adminPanel .panel-header #logoutBtn { width:100%; }
  #adminPanel table { min-width: 760px !important; }
  #adminPanel th:last-child, #adminPanel td:last-child { min-width: 188px !important; }
  #adminPanel .icon-btn { min-width:84px !important; padding:9px 10px !important; }
}
