/* ============================================================
   TRUSTPAY — Main Stylesheet
   ============================================================ */

:root {
  --blue: #3B5BFF;
  --blue-dark: #2942e0;
  --blue-light: #6B83FF;
  --cyan: #00C2FF;
  --dark: #0A0E1A;
  --dark-2: #111624;
  --dark-3: #1A2035;
  --dark-4: #242b42;
  --surface: #1E2540;
  --border: rgba(255,255,255,0.08);
  --text: #E8EAF2;
  --text-muted: #7B82A0;
  --green: #00D084;
  --gold: #F0B429;
  --white: #ffffff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,91,255,0.4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { display: flex; align-items: center; justify-content: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
.logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,91,255,0.15) 0%, transparent 70%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,91,255,0.12);
  border: 1px solid rgba(59,91,255,0.3);
  color: var(--blue-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-perks {
  display: flex;
  gap: 28px;
  color: var(--text-muted);
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
.hero-perks span { color: var(--green); }

/* Hero Card Visual */
.hero-card-visual {
  position: relative;
  width: 320px;
  height: 200px;
  margin: 0 auto;
}
.floating-card {
  position: absolute;
  width: 280px;
  height: 170px;
  border-radius: 16px;
  padding: 20px 24px;
}
.card-back {
  background: linear-gradient(135deg, #1a2035, #242b42);
  border: 1px solid var(--border);
  top: 20px; left: 40px;
  transform: rotate(6deg);
}
.card-front {
  background: linear-gradient(135deg, var(--blue), #1a3aff);
  top: 0; left: 0;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(59,91,255,0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}
.card-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, #d4a843, #f0c060);
  border-radius: 5px;
}
.card-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
}
.card-brand small { font-weight: 400; font-size: 10px; opacity: 0.7; }
.card-number {
  font-size: 15px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
}
.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

/* ===== SECTIONS COMMON ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--dark-2);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(59,91,255,0.4); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== CARDS SECTION ===== */
.cards-section { padding: 100px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tier-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.tier-card:hover { border-color: rgba(59,91,255,0.4); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--blue); background: linear-gradient(135deg, var(--dark-3), rgba(59,91,255,0.08)); }
.tier-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.metal-badge { background: linear-gradient(135deg, #888, #ccc); }

/* Tier card visuals */
.tier-visual {
  width: 100%;
  aspect-ratio: 1.586;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
}
.white-card { background: linear-gradient(135deg, #c8cfe0, #e8ecf5); }
.white-card .tier-brand, .white-card .tier-num { color: #3a4060; }
.blue-card { background: linear-gradient(135deg, var(--blue), #1a3aff); box-shadow: 0 10px 30px rgba(59,91,255,0.3); }
.blue-card .tier-brand, .blue-card .tier-num { color: rgba(255,255,255,0.9); }
.metal-card { background: linear-gradient(135deg, #3a3a3a, #6a6a6a); }
.metal-card .tier-brand, .metal-card .tier-num { color: rgba(255,255,255,0.9); }
.tier-chip { width: 30px; height: 22px; background: linear-gradient(135deg, #d4a843, #f0c060); border-radius: 4px; }
.tier-brand { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.tier-brand small { font-weight: 400; opacity: 0.7; }
.tier-num { font-size: 13px; letter-spacing: 3px; opacity: 0.8; }

.tier-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.tier-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.tier-card ul { list-style: none; margin-bottom: 28px; }
.tier-card ul li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 100px 0; background: var(--dark-2); }
.steps {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.step { flex: 1; min-width: 200px; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(59,91,255,0.2);
  margin-bottom: 12px;
}
.step h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }
.step-arrow { font-size: 28px; color: var(--blue); opacity: 0.5; }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-top p { color: var(--text-muted); font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--text); }

/* ===== MODALS ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}
.modal-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; flex: 1; }
.modal-close, .modal-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close:hover, .modal-back:hover { background: var(--border); }
.modal-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

/* Card options in modal */
.card-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.card-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.card-option:hover { border-color: rgba(59,91,255,0.4); }
.card-option.selected { border-color: var(--blue); background: rgba(59,91,255,0.08); }

.card-option-visual {
  width: 80px;
  height: 52px;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  font-size: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.white-card-sm { background: linear-gradient(135deg, #c8cfe0, #e8ecf5); color: #3a4060; }
.blue-card-sm { background: linear-gradient(135deg, var(--blue), #1a3aff); color: white; }
.metal-card-sm { background: linear-gradient(135deg, #3a3a3a, #6a6a6a); color: white; }

.card-option-info { flex: 1; }
.card-option-info h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.card-option-info p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.metal-tag {
  background: linear-gradient(135deg, #888, #ccc);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

.card-radio {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-radio.checked { border-color: var(--blue); background: var(--blue); }
.radio-inner { width: 8px; height: 8px; background: white; border-radius: 50%; display: none; }
.card-radio.checked .radio-inner { display: block; }

/* Review modal */
.review-ready {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,208,132,0.08);
  border: 1px solid rgba(0,208,132,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}
.ready-icon {
  width: 36px; height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.review-ready strong { display: block; margin-bottom: 2px; }
.review-ready p { font-size: 13px; color: var(--text-muted); }

.review-table {
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.review-row:last-child { border-bottom: none; }
.review-row span:first-child { color: var(--text-muted); }
.review-row span:last-child { font-weight: 600; }
.green { color: var(--green) !important; }

.perks-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.perk-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Connect wallet modal */
.steps-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.step-dot {
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.step-dot.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.connect-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.connect-wallet-icon {
  width: 90px; height: 90px;
  background: rgba(59,91,255,0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connect-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.connect-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

/* Wallet list */
.wallet-list {
  position: absolute;
  inset: 0;
  background: var(--dark);
  border-radius: 24px;
  padding: 24px;
  z-index: 10;
  overflow-y: auto;
}
.wallet-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.wallet-list-header h3 { font-family: var(--font-display); font-size: 18px; }
.wallet-list-header button { background: none; border: none; color: var(--text-muted); font-size: 22px; cursor: pointer; }
.wallet-search {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 20px;
}
.wallet-search::placeholder { color: var(--text-muted); }
.wallet-search:focus { outline: none; border-color: var(--blue); }

.wallets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wallet-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.wallet-item:hover { border-color: var(--blue); }
.wallet-item img { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 8px; }
.wallet-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Success modal */
.text-center { text-align: center; }
.success-anim {
  width: 100px; height: 100px;
  position: relative;
  margin: 0 auto 24px;
}
.success-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--green);
  border-radius: 50%;
  animation: ringExpand 0.5s ease forwards;
}
@keyframes ringExpand {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--green);
  animation: checkPop 0.3s 0.3s ease both;
}
@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.issued-card-preview {
  width: 260px;
  height: 160px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== DASHBOARD LAYOUT (for dashboard.php) ===== */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 240px;
  background: var(--dark-2);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 50;
}
.sidebar-logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  color: var(--text);
  background: rgba(59,91,255,0.08);
  border-right: 3px solid var(--blue);
}
.sidebar-nav li a .nav-icon { font-size: 18px; }

.main-content {
  flex: 1;
  margin-left: 240px;
  padding: 32px;
  min-height: 100vh;
}

/* Dashboard cards */
.dash-header {
  margin-bottom: 32px;
}
.dash-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.dash-header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.stat-change { font-size: 12px; color: var(--green); margin-top: 4px; }

/* Transaction table */
.tx-table-wrap {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tx-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.tx-table-header h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

.tx-status {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.tx-status.success { background: rgba(0,208,132,0.12); color: var(--green); }
.tx-status.pending { background: rgba(240,180,41,0.12); color: var(--gold); }
.tx-status.failed { background: rgba(255,80,80,0.12); color: #ff6060; }

.tx-amount.credit { color: var(--green); }
.tx-amount.debit { color: #ff6060; }

/* Card display in dashboard */
.my-card-section {
  margin-bottom: 32px;
}
.my-card {
  width: 320px;
  height: 200px;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.my-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.my-card .card-number { font-size: 17px; letter-spacing: 4px; }

/* ===== ADMIN STYLES ===== */
.admin-badge {
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-inner { justify-content: space-between; }

  .hero-card-visual { display: none; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; }

  .sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; padding: 20px; }
  .main-content.with-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 40;
  }
}
