/* ========== BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{box-sizing:border-box}

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.06);
  --text: #e8e8ec;
  --text-muted: #8a8a9a;
  --text-dim: #5a5a6a;
  --accent: #6366f1;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1), rgba(6,182,212,0.08));
}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* ========== NAV ========== */
.nav{
  min-height:70px;
  background:rgba(10,10,15,0.8);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6%;
  gap:15px;
  position:sticky;
  top:0;
  z-index:100;
}

.brand{
  font-weight:900;
  font-size:22px;
  color:var(--text);
  text-decoration:none;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav a{
  margin-left:18px;
  color:var(--text-muted);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  transition:color 0.3s ease;
}

.nav a:hover{color:var(--text)}

.container{
  max-width:1150px;
  margin:0 auto;
  padding:40px 20px;
}

/* ========== HERO (NEW) ========== */
.hero{
  text-align:center;
  padding:120px 24px 100px;
  max-width:1200px;
  margin:0 auto;
  position:relative;
  background:none;
  color:var(--text);
}

.hero-bg{
  position:absolute;
  top:-200px;
  left:50%;
  transform:translateX(-50%);
  width:800px;
  height:800px;
  background:radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.06) 40%, transparent 70%);
  pointer-events:none;
  z-index:0;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.2);
  padding:8px 20px;
  border-radius:100px;
  font-size:13px;
  font-weight:500;
  color:#a5a5ff;
  margin-bottom:32px;
  position:relative;
  z-index:1;
}

.pill-dot{
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
  box-shadow:0 0 8px #22c55e;
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.6;transform:scale(0.85)}
}

.hero h1{
  font-size:clamp(36px,5vw,64px);
  font-weight:800;
  line-height:1.1;
  max-width:800px;
  margin:0 auto 24px;
  letter-spacing:-0.03em;
  position:relative;
  z-index:1;
}

.gradient-text{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-sub{
  font-size:18px;
  color:var(--text-muted);
  max-width:600px;
  margin:0 auto 40px;
  line-height:1.7;
  position:relative;
  z-index:1;
}

.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:64px;
  position:relative;
  z-index:1;
}

.hero-stats{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

.stat{text-align:center}
.stat-num{
  display:block;
  font-size:32px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.stat-label{
  font-size:13px;
  color:var(--text-dim);
  text-transform:uppercase;
  letter-spacing:0.1em;
}
.stat-divider{
  width:1px;
  height:40px;
  background:var(--border);
}

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  cursor:pointer;
  border:none;
}

.btn-primary{
  background:var(--gradient);
  color:white!important;
  box-shadow:0 4px 24px rgba(99,102,241,0.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(99,102,241,0.5);
}

.btn-secondary{
  background:var(--bg-card);
  color:var(--text)!important;
  border:1px solid var(--border);
}
.btn-secondary:hover{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.12);
  transform:translateY(-2px);
}

.btn.small{padding:9px 13px}

/* ========== SECTION HEADERS ========== */
.section-header{
  text-align:center;
  margin-bottom:64px;
}
.section-tag{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color:var(--accent);
  background:rgba(99,102,241,0.1);
  padding:6px 16px;
  border-radius:100px;
  margin-bottom:16px;
}
.section-header h2{
  font-size:clamp(28px,3.5vw,42px);
  font-weight:700;
  letter-spacing:-0.02em;
}
.section-desc{
  color:var(--text-muted);
  max-width:500px;
  margin:16px auto 0;
  font-size:16px;
}

/* ========== CARDS ========== */
.grid3,.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.pricing{grid-template-columns:repeat(4,1fr)}

.card,.price-card,.form-card,.auth{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:36px;
  transition:all 0.4s ease;
}
.card:hover,.price-card:hover,.form-card:hover,.auth:hover{
  transform:translateY(-4px);
  border-color:rgba(99,102,241,0.2);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.card-icon{
  width:56px;
  height:56px;
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.15);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  margin-bottom:20px;
}
.card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:var(--text);
}
.card p{
  font-size:14px;
  color:var(--text-muted);
  line-height:1.7;
}

/* ========== HOW IT WORKS ========== */
.how-it-works{
  background:var(--bg-elevated);
  border-radius:32px;
  margin:0 24px;
  max-width:1152px;
  padding:100px 24px;
}

.steps{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
  flex-wrap:wrap;
}
.step{
  flex:1;
  min-width:200px;
  text-align:center;
  padding:0 16px;
}
.step-num{
  font-size:48px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  opacity:0.3;
  line-height:1;
  margin-bottom:16px;
}
.step h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}
.step p{
  font-size:14px;
  color:var(--text-muted);
  line-height:1.6;
}
.step-arrow{
  color:var(--text-dim);
  padding-top:12px;
  flex-shrink:0;
}

/* ========== FAQ ========== */
.faq details{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  margin-bottom:12px;
  overflow:hidden;
  transition:all 0.3s ease;
}
.faq details[open]{border-color:rgba(99,102,241,0.2)}
.faq summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
  cursor:pointer;
  font-weight:500;
  font-size:15px;
  list-style:none;
  color:var(--text);
}
.faq summary::-webkit-details-marker{display:none}
.faq-icon{
  color:var(--text-dim);
  transition:transform 0.3s ease;
  flex-shrink:0;
}
.faq details[open] .faq-icon{
  transform:rotate(180deg);
  color:var(--accent);
}
.faq details p{
  padding:0 24px 20px;
  color:var(--text-muted);
  font-size:14px;
  line-height:1.7;
}

/* ========== CONTACT ========== */
.contact{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  margin:0 24px 60px;
  max-width:1152px;
  background:var(--bg-elevated);
  padding:100px 24px;
}
.contact-bg{
  position:absolute;
  bottom:-200px;
  left:50%;
  transform:translateX(-50%);
  width:600px;
  height:600px;
  background:radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%);
  pointer-events:none;
}
.contact-card{
  text-decoration:none;
  color:inherit;
  display:block;
}
.contact-link{
  display:inline-block;
  margin-top:16px;
  font-size:13px;
  font-weight:600;
  color:var(--accent);
  transition:all 0.3s ease;
}
.contact-card:hover .contact-link{color:var(--accent3)}

/* ========== PRICING CARDS ========== */
.price-card .price{
  font-size:36px;
  font-weight:900;
  margin:20px 0;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ========== AUTH / FORMS ========== */
.auth{max-width:420px;margin:0 auto}
label{display:block;margin:15px 0 7px;font-weight:700;color:var(--text-muted)}
input,textarea,select{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  background:rgba(255,255,255,0.03);
  color:var(--text);
  font-family:inherit;
  transition:border-color 0.3s ease;
}
input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:var(--accent);
}
textarea{min-height:100px}

/* ========== TABLES ========== */
.table-wrap{
  overflow:auto;
  background:var(--bg-card);
  border-radius:18px;
  border:1px solid var(--border);
  margin-top:25px;
}
table{width:100%;border-collapse:collapse}
th,td{
  text-align:left;
  padding:15px;
  border-bottom:1px solid var(--border);
  color:var(--text);
}
th{color:var(--text-muted);font-weight:600;font-size:13px;text-transform:uppercase;letter-spacing:0.05em}

/* ========== PROGRESS ========== */
.progress{
  width:100%;
  height:16px;
  background:rgba(255,255,255,0.06);
  border-radius:99px;
  overflow:hidden;
}
.progress div{height:100%;background:var(--gradient)}

/* ========== ALERTS ========== */
.alert{padding:14px 16px;border-radius:12px;margin-bottom:20px}
.success{background:rgba(34,197,94,0.1);color:#4ade80;border:1px solid rgba(34,197,94,0.2)}
.error{background:rgba(239,68,68,0.1);color:#f87171;border:1px solid rgba(239,68,68,0.2)}

/* ========== MISC ========== */
.inline{display:inline}
code{
  display:block;
  background:var(--bg-elevated);
  color:var(--text);
  padding:15px;
  border-radius:12px;
  word-break:break-all;
  border:1px solid var(--border);
}
.lead{font-size:18px;color:var(--text-muted)}

/* ========== FOOTER ========== */
.footer{
  max-width:1150px;
  margin:30px auto 0;
  padding:35px 20px;
  border-top:1px solid var(--border);
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
  color:var(--text-muted);
}
.footer a{color:var(--accent);text-decoration:none}
.footer a:hover{color:var(--accent3)}

/* ========== RESPONSIVE ========== */
@media(max-width:900px){
  .grid3,.pricing,.footer{grid-template-columns:1fr}
  .hero{padding:80px 20px 60px}
  .hero h1{font-size:34px}
  .nav{padding:15px 20px;align-items:flex-start;flex-direction:column}
  .nav a{margin-left:0;margin-right:12px}
  .how-it-works,.contact{margin:0 16px;border-radius:24px;padding:60px 20px}
  .steps{flex-direction:column;gap:32px}
  .step-arrow{transform:rotate(90deg)}
  .stat-divider{display:none}
  .hero-stats{gap:24px}
  section{padding:60px 20px}
}


/* ========== ADMIN PANEL ========== */
.admin-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:32px;
}
.admin-title h1{
  font-size:32px;
  font-weight:800;
  margin:0 0 8px;
  letter-spacing:-0.02em;
}
.admin-title p{
  color:var(--text-muted);
  margin:0;
  font-size:15px;
}
.revenue-card{
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.2);
  border-radius:20px;
  padding:24px 32px;
  text-align:center;
}
.revenue-label{
  display:block;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--text-muted);
  margin-bottom:4px;
}
.revenue-amount{
  display:block;
  font-size:36px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Admin Table */
.admin-table table thead th{
  background:rgba(99,102,241,0.05);
  font-size:11px;
  letter-spacing:0.08em;
  padding:16px;
}
.admin-table table tbody td{
  padding:16px;
  vertical-align:middle;
}
.admin-table table tbody tr:hover{
  background:rgba(99,102,241,0.03);
}

.user-cell{
  display:flex;
  align-items:center;
  gap:12px;
}
.user-avatar{
  width:36px;
  height:36px;
  background:var(--gradient);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  color:white;
  flex-shrink:0;
}
.user-email{
  font-size:14px;
  color:var(--text);
}

.progress-cell{
  display:flex;
  align-items:center;
  gap:12px;
}
.progress.mini{
  width:80px;
  height:6px;
  background:rgba(255,255,255,0.06);
}
.progress-text{
  font-size:13px;
  font-weight:600;
  color:var(--text-muted);
  min-width:36px;
}

.badge{
  display:inline-block;
  padding:4px 12px;
  border-radius:100px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.badge.plan{
  background:rgba(99,102,241,0.1);
  color:#a5a5ff;
  border:1px solid rgba(99,102,241,0.2);
}
.badge.payment.paid,
.badge.payment.payment-approved{
  background:rgba(34,197,94,0.1);
  color:#4ade80;
  border:1px solid rgba(34,197,94,0.2);
}
.badge.payment.pending,
.badge.payment.awaiting-binance-payment{
  background:rgba(234,179,8,0.1);
  color:#facc15;
  border:1px solid rgba(234,179,8,0.2);
}
.badge.payment.pending-verification{
  background:rgba(249,115,22,0.1);
  color:#fb923c;
  border:1px solid rgba(249,115,22,0.2);
}
.badge.payment.payment-rejected{
  background:rgba(239,68,68,0.1);
  color:#f87171;
  border:1px solid rgba(239,68,68,0.2);
}
.badge.status.completed{
  background:rgba(34,197,94,0.1);
  color:#4ade80;
  border:1px solid rgba(34,197,94,0.2);
}
.badge.status.in-progress,
.badge.status.testing-started{
  background:rgba(6,182,212,0.1);
  color:#22d3ee;
  border:1px solid rgba(6,182,212,0.2);
}
.badge.status.pending-payment,
.badge.status.awaiting-payment{
  background:rgba(234,179,8,0.1);
  color:#facc15;
  border:1px solid rgba(234,179,8,0.2);
}
.badge.status.cancelled{
  background:rgba(239,68,68,0.1);
  color:#f87171;
  border:1px solid rgba(239,68,68,0.2);
}

.btn-small{
  padding:8px 16px;
  font-size:13px;
}

/* Order Info */
.order-info{
  margin-bottom:24px;
}
.order-info h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:16px;
}
.info-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.info-label{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--text-dim);
}
.info-value{
  font-size:15px;
  color:var(--text);
}
.info-value.code{
  font-family:'SF Mono', monospace;
  font-size:13px;
  background:rgba(255,255,255,0.03);
  padding:8px 12px;
  border-radius:8px;
  border:1px solid var(--border);
  word-break:break-all;
}
.info-link{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}
.info-link:hover{color:var(--accent3)}

/* Form Card */
.form-card h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 24px;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:16px;
  margin-bottom:16px;
}
.form-group label{
  margin-top:0;
}

/* Auth Section */
.auth-section{
  min-height:calc(100vh - 70px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}
.auth-icon{
  width:64px;
  height:64px;
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.2);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  margin:0 auto 24px;
}
.auth h1{
  text-align:center;
  font-size:24px;
  font-weight:700;
  margin:0 0 8px;
}
.auth-sub{
  text-align:center;
  color:var(--text-muted);
  margin:0 0 32px;
  font-size:15px;
}
.btn-full{
  width:100%;
  justify-content:center;
  margin-top:8px;
}


/* ========== PAGE HEADER ========== */
.page-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:32px;
}
.page-title h1{
  font-size:32px;
  font-weight:800;
  margin:0 0 8px;
  letter-spacing:-0.02em;
}
.page-title p{
  color:var(--text-muted);
  margin:0;
  font-size:15px;
}

/* ========== AUTH FOOTER ========== */
.auth-footer{
  text-align:center;
  margin-top:24px;
  color:var(--text-muted);
  font-size:14px;
}
.auth-footer a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}
.auth-footer a:hover{color:var(--accent3)}

/* ========== DASHBOARD ========== */
.app-cell{
  display:flex;
  align-items:center;
  gap:12px;
}
.app-icon{
  width:36px;
  height:36px;
  background:var(--gradient);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  color:white;
  flex-shrink:0;
}

.empty-state{
  text-align:center;
  padding:80px 20px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:24px;
}
.empty-icon{
  width:80px;
  height:80px;
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.15);
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  margin:0 auto 24px;
}
.empty-state h3{
  font-size:20px;
  font-weight:700;
  margin:0 0 8px;
}
.empty-state p{
  color:var(--text-muted);
  margin:0 0 24px;
  font-size:15px;
}

/* ========== BINANCE PAYMENT ========== */
.payment-details .price{
  font-size:24px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.wallet-box{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 16px;
  margin-top:4px;
}
.wallet-box code{
  background:none;
  border:none;
  padding:0;
  flex:1;
  font-size:13px;
}
.copy-btn{
  background:rgba(99,102,241,0.1);
  border:1px solid rgba(99,102,241,0.2);
  border-radius:8px;
  padding:8px;
  color:var(--accent);
  cursor:pointer;
  transition:all 0.3s ease;
}
.copy-btn:hover{
  background:rgba(99,102,241,0.2);
  transform:scale(1.05);
}
.payment-note{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:rgba(234,179,8,0.05);
  border:1px solid rgba(234,179,8,0.15);
  border-radius:12px;
  padding:16px;
  margin-top:20px;
  color:var(--text-muted);
  font-size:14px;
}
.payment-note svg{
  color:#facc15;
  flex-shrink:0;
  margin-top:2px;
}
.payment-note p{margin:0}

/* File Input */
.file-input-wrap{
  position:relative;
}
.file-input-wrap input[type="file"]{
  position:absolute;
  opacity:0;
  width:100%;
  height:100%;
  cursor:pointer;
}
.file-label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px;
  background:rgba(255,255,255,0.03);
  border:2px dashed var(--border);
  border-radius:12px;
  color:var(--text-muted);
  cursor:pointer;
  transition:all 0.3s ease;
}
.file-label:hover{
  border-color:var(--accent);
  color:var(--text);
}

/* ========== ORDER DETAIL (if exists) ========== */
.order-detail{
  max-width:800px;
}
.order-status-bar{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:32px;
  padding:20px 24px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
}
.order-status-bar .progress{
  flex:1;
  height:8px;
}
.status-percent{
  font-size:20px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  min-width:50px;
  text-align:right;
}


/* ========== LAYOUT ========== */
.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
}
.nav-logout{
  background:none;
  border:none;
  color:var(--text-muted);
  font-family:inherit;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  padding:8px 16px;
  border-radius:8px;
  transition:all 0.3s ease;
}
.nav-logout:hover{
  color:var(--text);
  background:rgba(255,255,255,0.05);
}
.btn-small{
  padding:8px 18px;
  font-size:13px;
}

/* Footer */
.footer-brand{
  display:block;
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.footer strong{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.footer p{
  margin:0 0 6px;
  font-size:14px;
}

/* ========== ORDER DETAIL ========== */
.order-detail{max-width:900px}
.order-detail .page-header{align-items:center}
.order-status-bar{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:32px;
  padding:20px 24px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
}
.order-status-bar .progress{
  flex:1;
  height:8px;
  background:rgba(255,255,255,0.06);
}
.order-status-bar .progress div{height:100%;background:var(--gradient)}
.status-percent{
  font-size:24px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  min-width:60px;
  text-align:right;
}

.info-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:6px;
  transition:all 0.3s ease;
}
.info-card:hover{
  border-color:rgba(99,102,241,0.2);
  transform:translateY(-2px);
}
.info-card-label{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--text-dim);
}
.info-card-value{
  font-size:20px;
  font-weight:700;
  color:var(--text);
}
.info-card-sub{
  font-size:13px;
  color:var(--text-muted);
}

.action-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:var(--gradient-soft);
  border:1px solid rgba(99,102,241,0.2);
  border-radius:20px;
  padding:28px 32px;
  margin:24px 0;
  flex-wrap:wrap;
}
.action-icon{
  width:48px;
  height:48px;
  background:rgba(99,102,241,0.15);
  border:1px solid rgba(99,102,241,0.25);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  flex-shrink:0;
}
.action-content{flex:1;min-width:200px}
.action-content h3{
  font-size:16px;
  font-weight:700;
  margin:0 0 4px;
}
.action-content p{
  margin:0;
  color:var(--text-muted);
  font-size:14px;
}

.admin-note{
  margin-top:24px;
}
.admin-note-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--accent);
}
.admin-note-header h3{
  font-size:16px;
  font-weight:700;
  margin:0;
  color:var(--text);
}
.admin-note p{
  color:var(--text-muted);
  line-height:1.7;
  margin:0;
}

/* ========== ORDER NEW ========== */
.order-new{max-width:700px;margin:0 auto}
.order-new .page-header.center{text-align:center;justify-content:center}
.order-new .page-header.center .page-title{width:100%}
.price-tag{
  font-size:36px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:8px 0 0;
}
.price-tag span{
  font-size:16px;
  font-weight:400;
  color:var(--text-muted);
  -webkit-text-fill-color:var(--text-muted);
}
.order-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.order-form .form-group.full{grid-column:1/-1}

/* ========== PRICING ========== */
.pricing-hero{padding-top:60px}
.pricing{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}
.price-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:36px;
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
}
.price-card:hover{
  transform:translateY(-8px);
  border-color:rgba(99,102,241,0.3);
  box-shadow:0 24px 64px rgba(0,0,0,0.4);
}
.price-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:var(--gradient);
  opacity:0;
  transition:opacity 0.3s ease;
}
.price-card:hover::before{opacity:1}

.price-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}
.price-header h2{
  font-size:20px;
  font-weight:700;
  margin:0;
}
.price-badge{
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--accent);
  background:rgba(99,102,241,0.1);
  padding:4px 12px;
  border-radius:100px;
}

.price-amount{
  font-size:48px;
  font-weight:800;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:8px 0 24px;
}

.price-features{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}
.price-features li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  color:var(--text-muted);
  font-size:14px;
  border-bottom:1px solid var(--border);
}
.price-features li:last-child{border-bottom:none}
.price-features li svg{
  color:var(--accent);
  flex-shrink:0;
}

.comparison{
  padding-top:80px;
  padding-bottom:80px;
}

/* ========== RESPONSIVE ========== */
@media(max-width:768px){
  .order-form .form-grid{grid-template-columns:1fr}
  .action-card{flex-direction:column;align-items:flex-start}
  .order-status-bar{flex-direction:column;align-items:stretch}
  .status-percent{text-align:left}
  .nav-links{flex-wrap:wrap}
}
