/* Custom styles to complement Tailwind */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ---------- Brand / logo ---------- */
.brand { text-decoration: none; }
.brand-mark {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.08); }
.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-accent { color: #fde68a; }
.brand-footer .brand-name { font-size: 1.25rem; }

/* Nav CTA pill */
.nav-cta {
  background: #fff;
  color: #1d4ed8;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.2); }

/* ---------- Hero ---------- */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-highlight {
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #1d4ed8;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.25); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* Twinkling star field over the hero */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 70% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.6), transparent);
  animation: twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes twinkle { from { opacity: 0.4; } to { opacity: 1; } }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: linear-gradient(180deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 2rem 0;
}
.dark .stats-bar { background: linear-gradient(180deg, #1e3a8a, #1e40af); }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.85rem; opacity: 0.9; }

/* ---------- Section headings ---------- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #2563eb;
}
.dark .section-title { color: #60a5fa; }
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 0.75rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}
.section-sub {
  text-align: center;
  margin-top: 1rem;
  color: #6b7280;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.dark .section-sub { color: #9ca3af; }

/* ---------- Why-me feature cards ---------- */
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dark .feature-card { background: #374151; border-color: rgba(255,255,255,0.06); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.12); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  margin-bottom: 0.9rem;
}
.dark .feature-icon { background: linear-gradient(135deg, #1e40af, #2563eb); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #1f2937; margin-bottom: 0.4rem; }
.dark .feature-card h3 { color: #f3f4f6; }
.feature-card p { color: #6b7280; font-size: 0.95rem; }
.dark .feature-card p { color: #d1d5db; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  padding: 3.5rem 0;
}
.dark .cta-banner { background: linear-gradient(135deg, #1e3a8a, #2563eb); }

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Hero animation */
.hero-animation {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.2));
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Card hover effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Service buttons */
.service-btn {
  transition: background-color 0.3s ease;
}

/* Portfolio badges */
.badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* Preview area - screenshot only */
.preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  background: #e9eef6;
}

.dark .preview {
  background: #374151;
  border-color: rgba(255,255,255,0.1);
}

.preview::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect */
}

.preview-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.preview-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Preview is clickable to open the gallery */
.preview { cursor: pointer; }

/* Hover overlay prompting the gallery */
.overlay-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.preview:hover .overlay-view,
.preview:focus .overlay-view {
  opacity: 1;
  background: rgba(15, 23, 42, 0.45);
}
.overlay-view-btn {
  background: #fff;
  color: #1d4ed8;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transform: translateY(6px);
  transition: transform 0.25s ease;
}
.preview:hover .overlay-view-btn { transform: translateY(0); }

/* "N shots" chip */
.shot-count {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

/* Thumbnail strip */
.thumb-strip {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}
.thumb {
  width: 64px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.thumb:hover { border-color: #2563eb; transform: translateY(-2px); }

/* Gallery button */
.gallery-btn {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-btn:hover { background: #2563eb; color: #fff; }
.dark .gallery-btn { color: #93c5fd; border-color: #3b82f6; }
.dark .gallery-btn:hover { background: #3b82f6; color: #fff; }

/* ---------- Lightbox ---------- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(2, 6, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
#lightbox.hidden { display: none; }
.lightbox-stage {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
#lightbox-img {
  max-width: 92vw;
  max-height: 76vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  background: #0f172a;
}
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  color: #e5e7eb;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
#lightbox-close, #lightbox-prev, #lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
#lightbox-close:hover, #lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.28); }
#lightbox-close { top: 1.2rem; right: 1.2rem; }
#lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
#lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  #lightbox-prev { left: 0.4rem; }
  #lightbox-next { right: 0.4rem; }
  #lightbox-img { max-height: 64vh; }
}

.visit-btn {
  background: #2563eb;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.visit-btn:hover {
  background: #1e40af;
}

/* Fade-in animation for sections */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modal Styles */
#service-modal {
  transition: opacity 0.3s ease;
}

#service-modal:not(.hidden) {
  opacity: 1;
}

.modal-content {
  animation: modalSlideIn 0.3s ease-out;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#modal-close {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Footer contact icons */
.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color 0.2s ease;
}

/* Mobile menu */
#mobile-menu.active {
  display: flex;
}

/* ---------- Store ---------- */
.store-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: -1.4rem;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}
.store-tab {
  background: #fff;
  color: #1d4ed8;
  border: 2px solid transparent;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.store-tab:hover { transform: translateY(-2px); }
.store-tab.active { background: #1d4ed8; color: #fff; }
.dark .store-tab { background: #374151; color: #93c5fd; }
.dark .store-tab.active { background: #2563eb; color: #fff; }

.store-toolbar {
  max-width: 46rem;
  margin: 2rem auto 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.store-search {
  width: 100%;
  padding: 0.75rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.store-search:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.dark .store-search { background: #374151; border-color: #4b5563; color: #f3f4f6; }

.platform-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.chip {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: #2563eb; color: #1d4ed8; }
.chip.active { background: #2563eb; border-color: #2563eb; color: #fff; }
.dark .chip { background: #374151; border-color: #4b5563; color: #d1d5db; }
.dark .chip.active { background: #2563eb; border-color: #2563eb; color: #fff; }

.store-status { text-align: center; color: #6b7280; margin: 1rem 0; }
.dark .store-status { color: #9ca3af; }

.smm-list { max-width: 46rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.smm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smm-row:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.1); }
.dark .smm-row { background: #374151; border-color: rgba(255,255,255,0.06); }
.smm-row.featured { border: 2px solid #fbbf24; }
.smm-platform { font-size: 0.75rem; font-weight: 700; color: #2563eb; text-transform: uppercase; letter-spacing: 0.04em; }
.dark .smm-platform { color: #93c5fd; }
.smm-name { font-weight: 600; font-size: 0.98rem; margin-top: 0.15rem; }
.smm-desc { font-size: 0.85rem; color: #6b7280; margin-top: 0.15rem; }
.dark .smm-desc { color: #d1d5db; }
.smm-meta { font-size: 0.8rem; color: #9ca3af; margin-top: 0.25rem; }
.smm-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; white-space: nowrap; }
.smm-price { font-weight: 800; color: #1d4ed8; font-size: 1.05rem; }
.dark .smm-price { color: #93c5fd; }
.smm-price small { font-weight: 600; color: #9ca3af; font-size: 0.7rem; }

.tv-grid {
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.7rem;
}
.tv-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tv-card:hover { transform: translateY(-3px); border-color: #2563eb; box-shadow: 0 10px 22px rgba(0,0,0,0.1); }
.dark .tv-card { background: #374151; border-color: rgba(255,255,255,0.06); }
.tv-name { font-weight: 700; font-size: 0.95rem; }
.tv-tag { font-size: 0.72rem; color: #6b7280; }
.dark .tv-tag { color: #9ca3af; }

.checkout-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.checkout-price strong { font-size: 1.25rem; color: #1d4ed8; }
.dark .checkout-price { background: rgba(37,99,235,0.15); border-color: rgba(147,197,253,0.3); }
.dark .checkout-price strong { color: #93c5fd; }
.co-hint { font-size: 0.78rem; color: #9ca3af; margin-top: 0.3rem; }

/* ---------- Portfolio Buy / Use buttons ---------- */
.project-shop {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.shop-btn {
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.shop-btn:hover { transform: translateY(-2px); }
.shop-buy { background: linear-gradient(90deg, #2563eb, #3b82f6); color: #fff; box-shadow: 0 6px 14px rgba(37,99,235,0.3); }
.shop-buy:hover { box-shadow: 0 10px 20px rgba(37,99,235,0.4); }
.shop-use { background: #ecfdf5; color: #047857; border: 1.5px solid #6ee7b7; }
.dark .shop-use { background: rgba(16,185,129,0.15); color: #6ee7b7; border-color: rgba(110,231,183,0.4); }
.shop-more { background: transparent; color: #6b7280; border: 1.5px dashed #d1d5db; }
.shop-more:hover { color: #2563eb; border-color: #2563eb; }
.dark .shop-more { color: #9ca3af; border-color: #4b5563; }

/* ---------- Account page ---------- */
.auth-tabs { display: flex; gap: 0.5rem; }
.auth-tab {
  flex: 1;
  padding: 0.6rem;
  border-radius: 10px;
  font-weight: 700;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.auth-tab.active { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.dark .auth-tab { background: #4b5563; color: #d1d5db; }
.dark .auth-tab.active { background: rgba(37,99,235,0.25); color: #93c5fd; border-color: rgba(147,197,253,0.4); }

.balance-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.balance-card p.balance-amount { font-size: 2.2rem; font-weight: 800; color: #1d4ed8; line-height: 1.1; }
.dark .balance-card p.balance-amount { color: #93c5fd; }

.wallet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}
.dark .wallet-row { background: #374151; border-color: #4b5563; }
.wallet-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.wallet-address {
  font-size: 0.78rem;
  word-break: break-all;
  background: #eef2ff;
  border-radius: 6px;
  padding: 0.2rem 0.4rem;
}
.dark .wallet-address { background: #1f2937; }

.history-list { display: flex; flex-direction: column; gap: 0.5rem; }
/* Tab content: this two-class rule must beat Tailwind's single-class .hidden,
   which .history-list (loaded after Tailwind) would otherwise override. */
.history-list.hidden { display: none; }
.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
a.history-row:hover { border-color: #2563eb; }
.dark .history-row { background: #374151; border-color: #4b5563; }
.history-main { font-weight: 600; font-size: 0.92rem; }
.history-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }

/* ---------- Order tracking ---------- */
.order-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.order-id { font-size: 0.8rem; color: #9ca3af; font-weight: 600; }
.progress-track { background: #e5e7eb; border-radius: 9999px; height: 12px; overflow: hidden; margin-top: 0.5rem; }
.dark .progress-track { background: #4b5563; }
.progress-fill { background: linear-gradient(90deg, #2563eb, #60a5fa); height: 100%; border-radius: 9999px; transition: width 0.6s ease; }
.number-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dark .number-box { background: rgba(37,99,235,0.15); border-color: rgba(147,197,253,0.3); }
.number-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #2563eb; }
.dark .number-label { color: #93c5fd; }
.number-row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; flex-wrap: wrap; }
.number-value { font-size: 1.5rem; letter-spacing: 0.02em; }
.sms-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
}
.dark .sms-box { background: #374151; border-color: rgba(255,255,255,0.08); }
.sms-code { font-size: 1.1rem; color: #059669; margin-bottom: 0.3rem; }
.dark .sms-code { color: #34d399; }
.sms-content { font-size: 0.9rem; word-break: break-word; }
.pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 9999px;
  background: #2563eb;
  margin-right: 6px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

@media (max-width: 640px) {
  .smm-row { flex-direction: column; align-items: stretch; }
  .smm-side { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  nav ul#mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #3b82f6;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
  }
  nav ul#mobile-menu.active {
    display: flex;
  }
  nav ul li + li {
    margin-top: 0.5rem;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
  section h2 {
    font-size: 1.8rem;
  }
  /* Modal mobile */
  #service-modal {
    align-items: stretch;
    padding: 1rem;
  }
  .modal-content {
    max-height: 90vh;
    margin: 1rem;
    border-radius: 12px;
  }
  .modal-content .flex {
    flex-direction: column;
  }
  .service-btn {
    min-height: 48px; /* Larger tap target */
  }
  .footer-icons a {
    width: 48px;
    height: 48px;
  }
}

/* ==================================================================
   THEME v2 — professional navy/indigo palette + real dark mode.
   The Tailwind CDN build ignores `dark:` classes, so dark mode is
   implemented here by overriding the utility classes under `.dark`.
   ================================================================== */
:root {
  --primary: #4f46e5;
  --primary-strong: #4338ca;
  --primary-light: #818cf8;
  --primary-soft: #eef2ff;
  --ink: #0f172a;
  --muted: #5b6b81;
  --bg: #f4f6fb;
  --surface: #ffffff;
  --line: #e5e9f2;
  --gold: #f5b840;
}
body.dark {
  --primary: #6366f1;
  --primary-strong: #818cf8;
  --primary-soft: rgba(99, 102, 241, 0.16);
  --ink: #e6ecf7;
  --muted: #94a3bc;
  --bg: #0b1120;
  --surface: #141d31;
  --line: #243049;
}

/* ---------- Base ---------- */
body.font-poppins { font-family: 'Inter', 'Poppins', sans-serif; background: var(--bg) !important; color: var(--ink); }
h1, h2, h3, h4, .brand-name, .stat-num { font-family: 'Poppins', sans-serif; }

/* ---------- Chrome: nav / hero / footer ---------- */
nav.fixed { background: linear-gradient(90deg, #0c1326 0%, #181f3a 55%, #312e81 100%) !important; }
header.relative { background: linear-gradient(140deg, #0c1326 0%, #1e1b4b 55%, #3730a3 115%) !important; }
footer { background: #0a0f1e !important; }
.stats-bar, .dark .stats-bar { background: linear-gradient(180deg, #181f3a, #1e1b4b); }
.cta-banner, .dark .cta-banner { background: linear-gradient(135deg, #1e1b4b, #4338ca); }
.hero-animation { background: radial-gradient(60% 80% at 70% 20%, rgba(99,102,241,0.25), transparent 70%); }

/* ---------- Re-tint Tailwind utilities to the new palette ---------- */
.bg-blue-600 { background-color: var(--primary) !important; }
.hover\:bg-blue-700:hover { background-color: var(--primary-strong) !important; }
.bg-blue-700 { background-color: var(--primary-strong) !important; }
.text-blue-600 { color: var(--primary) !important; }
.text-blue-400, .hover\:text-blue-400:hover { color: var(--primary-light) !important; }
.dark .text-blue-600 { color: #a5b4fc !important; }

/* ---------- Real dark mode for utility-classed elements ---------- */
.dark .bg-white { background-color: var(--surface) !important; }
.dark .bg-gray-100 { background-color: var(--bg) !important; }
.dark .bg-gray-50 { background-color: #0e152a !important; }
.dark .text-gray-800, .dark .text-gray-900 { color: var(--ink) !important; }
.dark .text-gray-600, .dark .text-gray-700 { color: var(--muted) !important; }
.dark .text-gray-500 { color: #7e90b3 !important; }
.dark .text-gray-300 { color: #c3cde0 !important; }
.dark input, .dark select, .dark textarea {
  background-color: #0f1830 !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}
input, select, textarea { border-color: var(--line); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); }

/* ---------- Components on the new palette ---------- */
.nav-cta { color: var(--primary-strong); }
body.dark .nav-cta { background: #e6ecf7; color: #312e81; }
.btn-primary { color: #312e81; }
.section-title { color: var(--ink); }
.dark .section-title { color: var(--ink); }
.section-title::after { background: linear-gradient(90deg, var(--primary), var(--gold)); }
.section-sub, .dark .section-sub { color: var(--muted); }
.badge { background: var(--primary); }
.feature-card, .dark .feature-card { background: var(--surface); border: 1px solid var(--line); }
.feature-card h3, .dark .feature-card h3 { color: var(--ink); }
.feature-card p, .dark .feature-card p { color: var(--muted); }
.feature-icon { background: var(--primary-soft); }
.dark .feature-icon { background: linear-gradient(135deg, #312e81, #4338ca); }
.preview, .dark .preview { background: #0e152a; border-color: var(--line); }
.overlay-view-btn { color: var(--primary-strong); }
.visit-btn { background: var(--primary); }
.visit-btn:hover { background: var(--primary-strong); }
.gallery-btn { color: var(--primary); border-color: var(--primary); }
.gallery-btn:hover { background: var(--primary); color: #fff; }
.dark .gallery-btn { color: var(--primary-light); border-color: var(--primary-light); }
.dark .gallery-btn:hover { background: var(--primary); color: #fff; }

.store-tab { color: var(--primary-strong); }
.store-tab.active, .dark .store-tab.active { background: var(--primary); color: #fff; }
.dark .store-tab { background: var(--surface); color: var(--primary-light); }
.store-search, .dark .store-search { background: var(--surface); border-color: var(--line); color: var(--ink); }
.store-search:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.18); }
.chip, .dark .chip { background: var(--surface); border-color: var(--line); color: var(--muted); }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active, .dark .chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.store-status, .dark .store-status { color: var(--muted); }

.smm-row, .dark .smm-row, .tv-card, .dark .tv-card { background: var(--surface); border-color: var(--line); }
.smm-row.featured { border-color: var(--gold); }
.smm-platform, .dark .smm-platform { color: var(--primary); }
.dark .smm-platform { color: var(--primary-light); }
.smm-name { color: var(--ink); }
.smm-desc, .dark .smm-desc, .tv-tag, .dark .tv-tag { color: var(--muted); }
.smm-price { color: var(--primary); }
.dark .smm-price { color: var(--primary-light); }
.tv-name { color: var(--ink); }
.tv-card:hover { border-color: var(--primary); }

.checkout-price, .dark .checkout-price { background: var(--primary-soft); border-color: var(--line); }
.checkout-price strong, .dark .checkout-price strong { color: var(--primary); }
.dark .checkout-price strong { color: var(--primary-light); }
.number-box, .dark .number-box { background: var(--primary-soft); border-color: var(--line); }
.number-countdown {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 0.6rem; padding: 0.4rem 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 9999px;
}
.number-countdown .cd-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.number-countdown .cd-time { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.35rem; line-height: 1; color: var(--primary); font-variant-numeric: tabular-nums; }
.number-countdown.urgent { border-color: #ef4444; }
.number-countdown.urgent .cd-time { color: #ef4444; animation: cd-flash 1s steps(2, start) infinite; }
.number-countdown.expired .cd-time { color: #9ca3af; }
@keyframes cd-flash { 50% { opacity: 0.35; } }
.number-label, .dark .number-label { color: var(--primary); }
.dark .number-label { color: var(--primary-light); }
.sms-box, .dark .sms-box { background: var(--surface); border-color: var(--line); }
.wallet-row, .dark .wallet-row, .history-row, .dark .history-row { background: var(--surface); border-color: var(--line); }
a.history-row:hover { border-color: var(--primary); }
.wallet-address, .dark .wallet-address { background: var(--primary-soft); color: var(--ink); }
.progress-fill { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.pulse-dot { background: var(--primary); }
.shop-buy { background: linear-gradient(90deg, var(--primary), #6366f1); box-shadow: 0 6px 14px rgba(79,70,229,0.3); }
.shop-more:hover { color: var(--primary); border-color: var(--primary); }
.auth-tab.active, .dark .auth-tab.active { background: var(--primary-soft); color: var(--primary); border-color: var(--primary); }
.balance-card p.balance-amount, .dark .balance-card p.balance-amount { color: var(--primary); }
.dark .balance-card p.balance-amount { color: var(--primary-light); }
.dark .modal-content { border-color: var(--line); }
.dark .thumb:hover { border-color: var(--primary-light); }

/* ---------- Project detail: feature tour ---------- */
#pm-shots { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 1.25rem; }
.pm-figure { margin: 0; }
.pm-figure img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  display: block;
}
.pm-figure figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.5rem 0.25rem 0;
  line-height: 1.5;
}

/* ---------- Account: two-panel auth ---------- */
.auth-shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 66rem;
  margin: 0 auto;
}
.auth-aside {
  background:
    radial-gradient(80% 60% at 85% 0%, rgba(99,102,241,0.35), transparent 65%),
    linear-gradient(150deg, #0c1326 0%, #1e1b4b 60%, #312e81 120%);
  color: #e6ecf7;
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 18px 40px rgba(12, 19, 38, 0.35);
}
.auth-aside h2 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.auth-aside .hero-badge { align-self: flex-start; }
.auth-perks { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; margin-top: 0.25rem; }
.auth-perks li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.45; color: #c4cde4; }
.auth-perks strong { color: #fff; }
.perk-icon {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  border-radius: 11px;
  background: rgba(99,102,241,0.22);
  border: 1px solid rgba(129,140,248,0.35);
}
.auth-aside-foot { margin-top: auto; font-size: 0.8rem; color: #8e9cc0; }
.auth-card { display: flex; flex-direction: column; justify-content: center; padding: 2.2rem; }

/* ---------- Account: dashboard ---------- */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}
.stat-card-label { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.stat-card-value { font-size: 1.9rem; font-weight: 800; line-height: 1.1; color: var(--ink); font-family: 'Poppins', sans-serif; }
.stat-card-sub { font-size: 0.78rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; }
.stat-balance {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(129,140,248,0.4), transparent 60%),
    linear-gradient(135deg, #312e81, #4f46e5);
  border: none;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
}
.stat-balance .stat-card-label { color: #c7d2fe; }
.stat-balance .stat-card-value { color: #fff; font-size: 2.2rem; }
.stat-balance .stat-card-sub { color: #c7d2fe; }

.dash-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.dash-actions .visit-btn, .dash-actions .gallery-btn { padding: 0.6rem 1.3rem; border-radius: 9999px; }
.dash-signout { margin-left: auto; opacity: 0.85; }

.dash-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 1.5rem;
  align-items: start;
}

/* Referral card */
.referral-card {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(129,140,248,0.35), transparent 60%),
    linear-gradient(135deg, #1e1b4b, #4f46e5);
  color: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px rgba(79,70,229,0.3);
}
.referral-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.referral-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0; }
.referral-sub { font-size: 0.88rem; color: #c7d2fe; margin: 0.25rem 0 0; max-width: 22rem; }
.referral-stats { display: flex; gap: 1.4rem; }
.referral-stats > div { display: flex; flex-direction: column; align-items: flex-end; }
.referral-num { font-size: 1.5rem; font-weight: 800; line-height: 1; font-family: 'Poppins', sans-serif; }
.referral-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: #c7d2fe; }
.referral-linkrow { display: flex; gap: 0.6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.referral-link {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; border-radius: 10px; padding: 0.6rem 0.9rem; font-size: 0.85rem;
}
.referral-linkrow .visit-btn { background: #fff; color: #312e81; white-space: nowrap; }
.referral-linkrow .visit-btn:hover { background: #eef2ff; }

@media (max-width: 960px) {
  .auth-shell { grid-template-columns: 1fr; max-width: 30rem; }
  .auth-aside { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-signout { margin-left: 0; }
}

/* ---------- Admin analytics ---------- */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.admin-stats .stat-card-value { font-size: 1.7rem; }
.admin-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.dark .admin-alert { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); color: #fca5a5; }
.alert-link { color: inherit; text-decoration: underline; font-weight: 700; cursor: pointer; background: none; border: none; padding: 0; }

/* Shared modal shell (also used by account.html's fund modal) */
.fund-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 15, 30, 0.65);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.fund-modal-backdrop.hidden { display: none !important; }
.fund-modal-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.5rem; width: 100%; max-width: 440px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.5);
}
.fund-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.65rem; }
.fund-modal-head h3 { margin: 0; font-size: 1.18rem; }
#fund-modal-close, #user-modal-close {
  background: none; border: none; font-size: 1.35rem; line-height: 1; cursor: pointer;
  color: var(--muted); padding: 0.2rem 0.45rem; border-radius: 6px;
}
#fund-modal-close:hover, #user-modal-close:hover { background: var(--line); }

/* User detail modal */
.um-balance { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--primary-soft); border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.1rem; }
.um-balance-val { font-size: 1.7rem; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; }
.dark .um-balance-val { color: var(--primary-light); }
.um-adjust { margin-top: 1rem; }
.um-controls { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.9rem; }
.um-referral {
  margin-top: 1rem; padding: 0.8rem 1rem;
  background: var(--primary-soft); border: 1px solid var(--line); border-radius: 10px;
  font-size: 0.88rem;
}
.um-referral code { background: var(--surface); padding: 0.1rem 0.4rem; border-radius: 5px; }
.um-scroll { max-height: 180px; overflow-y: auto; }

/* ---------- Admin website CMS ---------- */
.cms-project { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.cms-project > summary { cursor: pointer; padding: 0.8rem 1rem; font-size: 0.95rem; }
.cms-project[open] > summary { border-bottom: 1px solid var(--line); }
.cms-body { padding: 1rem; }
.cms-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 0.2rem; }
.cms-input { width: 100%; padding: 0.5rem 0.65rem; border: 1px solid var(--line); border-radius: 8px; font-size: 0.9rem; background: var(--surface); color: var(--ink); }
.cms-gallery { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.5rem 0; }
.cms-shot { display: grid; grid-template-columns: 96px 1fr auto; gap: 0.6rem; align-items: start; }
.cms-shot img { width: 96px; height: 60px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.cms-shot-actions { display: flex; flex-direction: column; gap: 0.25rem; }
.cms-shot-actions .gallery-btn { padding: 0.15rem 0.5rem; font-size: 0.8rem; }
.cms-upload { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }

/* ==================================================================
   Managed Growth page
   ================================================================== */
.managed-guarantee {
  background: linear-gradient(180deg, #181f3a, #1e1b4b);
  color: #e6ecf7;
  padding: 1.5rem 0;
}
.managed-guarantee > div > div { display: flex; flex-direction: column; gap: 0.15rem; align-items: center; }
.managed-guarantee strong { color: #fff; font-size: 0.95rem; }
.managed-guarantee span:last-child { font-size: 0.78rem; color: #aab4d4; }
.mg-ico { font-size: 1.5rem; }

/* Before / after showcase */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}
.showcase-head { font-weight: 700; margin-bottom: 0.8rem; color: var(--ink); }
.showcase-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.6rem; align-items: center; }
.showcase-pair figure { margin: 0; text-align: center; }
.showcase-pair img, .showcase-ph {
  width: 100%; aspect-ratio: 9 / 16; max-height: 320px;
  object-fit: cover; border-radius: 10px; border: 1px solid var(--line); background: #0e152a;
}
.showcase-ph { display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 700; }
.showcase-pair figcaption { font-size: 0.74rem; color: var(--muted); margin-top: 0.35rem; }
.showcase-arrow { font-size: 1.5rem; color: var(--primary); font-weight: 800; }
.showcase-caption { font-size: 0.88rem; color: var(--muted); margin-top: 0.9rem; line-height: 1.5; }

/* Package cards */
.managed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; max-width: 70rem; margin: 0 auto; }
.managed-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.managed-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12); }
.managed-card.featured { border: 2px solid var(--primary); box-shadow: 0 14px 30px rgba(79, 70, 229, 0.18); }
.managed-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.8rem; border-radius: 9999px; white-space: nowrap;
}
.managed-platform { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--primary); }
.dark .managed-platform { color: var(--primary-light); }
.managed-name { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.managed-price { font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; font-family: 'Poppins', sans-serif; }
.managed-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.managed-deliverables { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin: 0.4rem 0 0.9rem; }
.managed-deliverables li { font-size: 0.88rem; color: var(--muted); display: flex; gap: 0.4rem; }
.managed-deliverables li span { font-weight: 700; color: var(--ink); }
.managed-card .managed-order-btn { margin-top: auto; width: 100%; }

/* Order modal extras */
.mg-radio-row { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.3rem; }
.mg-radio { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--ink); cursor: pointer; }
.mg-radio input { width: auto; }

/* Managed order tracking + admin progress */
.managed-track { background: var(--primary-soft); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; }
.managed-steps { display: flex; gap: 0.5rem; margin: 0.8rem 0; }
.managed-step { flex: 1; text-align: center; font-size: 0.75rem; color: var(--muted); }
.managed-step .dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--line); margin: 0 auto 0.3rem; }
.managed-step.done .dot { background: var(--primary); }
.managed-step.done { color: var(--ink); font-weight: 600; }