/* ════════════════════════════════════════════════════════════════════════
   FAZAA — Register page styles
   ────────────────────────────────────────────────────────────────────────
   مستخرج من v2 Register.html (كان مدمجاً في <style> داخل الصفحة).
   1253 سطر. التعديلات هنا تنعكس على صفحة التسجيل فقط.
   ════════════════════════════════════════════════════════════════════════ */

* , *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg-base: #eef2ff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-dim: #64748b;
  --glass: rgba(255,255,255,0.62);
  --glass-deep: rgba(255,255,255,0.85);
  --border: rgba(255,255,255,0.7);
  --border-soft: rgba(0,0,0,0.06);
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-deep: #1e40af;
  --blue-soft: rgba(37,99,235,0.12);
  --indigo: #312e81;
  --indigo-mid: #4338ca;
  --indigo-soft: rgba(49,46,129,0.12);
  --gold: #c9a96a;
  --gold-deep: #a8884a;
  --gold-soft: #f1e3c0;
  --success: #10b981;
  --success-soft: rgba(16,185,129,0.14);
  --danger: #ef4444;
  --danger-soft: rgba(239,68,68,0.10);
}
html, body {
  font-family: 'Cairo', system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background: var(--bg-base);
  overflow-x: hidden;
}
body {
  display: flex; flex-direction: column;
  padding: 28px 20px 80px;
  position: relative;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.3); border-radius: 100px; }

/* ─────────────── ANIMATIONS ─────────────── */
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(80px,60px) scale(1.1); }
  66%      { transform: translate(-50px,120px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-120px,-90px) scale(1.15); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(100px,-60px) scale(0.9); }
}
@keyframes blobDrift4 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-80px,100px) scale(1.08); }
}
@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes ringPulse {
  0% { transform: scale(0.85); opacity:0.7; }
  100% { transform: scale(2.2); opacity:0; }
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 14px 30px -8px rgba(37,99,235,0.45), 0 0 0 0 rgba(37,99,235,0.4); }
  50%     { box-shadow: 0 14px 38px -6px rgba(37,99,235,0.65), 0 0 0 14px transparent; }
}
@keyframes successPop {
  0% { transform: scale(0) rotate(-180deg); opacity:0; }
  60%{ transform: scale(1.2) rotate(0); opacity:1; }
  100%{ transform: scale(1) rotate(0); opacity:1; }
}
@keyframes checkDraw { from {stroke-dashoffset:50;} to {stroke-dashoffset:0;} }
@keyframes ringExpand {
  0% { transform: scale(0.3); opacity:1; }
  100%{ transform: scale(1.8); opacity:0; }
}
@keyframes confettiFall {
  0% { transform: translateY(-30px) rotate(0); opacity:1; }
  100%{ transform: translateY(100vh) rotate(720deg); opacity:0; }
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 currentColor; opacity:1; }
  50%     { box-shadow: 0 0 0 8px transparent; opacity:0.7; }
}

/* ─────────────── AURORA BACKGROUND ─────────────── */
.aurora-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #eef2ff 0%, #f0f3ff 55%, #eef2ff 100%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(55px);
}
/* Static blobs (no per-frame animation) — keeps the look without the GPU
   cost of re-blurring the backdrop behind every glass panel each frame. */
.blob-1 { top: -200px; right: -200px; width: 720px; height: 720px;
  background: radial-gradient(circle, var(--blue), transparent 65%);
  opacity: 0.5; }
.blob-2 { top: 300px; left: -120px; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--indigo), transparent 65%);
  opacity: 0.42; }
.blob-3 { bottom: -180px; right: 80px; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--blue-light), transparent 65%);
  opacity: 0.4; }
.blob-4 { bottom: 200px; left: 200px; width: 540px; height: 540px;
  background: radial-gradient(circle, var(--indigo-mid), transparent 65%);
  opacity: 0.4; }
.aurora-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 4px 4px; opacity: 0.4; mix-blend-mode: overlay;
}

body > *:not(.aurora-bg) { position: relative; z-index: 1; }

/* ─────────────── FAZAA LIGHTNING LOGO ─────────────── */
.fz-logo {
  --letter-color: #0f172a;
  --letter-shadow: rgba(37,99,235,0.18);
  --z-color: var(--blue);
  --z-light: #60a5fa;
  --z-glow: rgba(37,99,235,0.4);
  --z-aura: rgba(37,99,235,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  direction: rtl; line-height: 0.85;
  font-family: 'Cairo', sans-serif; font-weight: 900;
  user-select: none; vertical-align: baseline;
  position: relative;
}
.fz-logo.shake { animation: fzShake 0.35s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes fzShake {
  10%,90% { transform: translate3d(-0.5px,0.5px,0); }
  20%,80% { transform: translate3d(0.8px,-0.8px,0); }
  30%,50%,70% { transform: translate3d(-1.2px,1.2px,0); }
  40%,60% { transform: translate3d(1.2px,-1.2px,0); }
}
.fz-letter {
  display: inline-block; color: var(--letter-color);
  text-shadow: 3px 3px 0 var(--letter-shadow);
  animation: fzBreathe 2s ease-in-out infinite;
}
.fz-letter.feh { margin-left: -3px; }
.fz-letter.alif-ayn { margin-right: -10px; }
@keyframes fzBreathe {
  0%,100% { filter: brightness(1); }
  50%     { filter: brightness(1.06); }
}
.fz-z-container { position: relative; display: inline-flex; justify-content: center; }
.fz-z-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--z-aura) 0%, transparent 70%);
  pointer-events: none;
  animation: fzAura 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes fzAura {
  0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(0.95); }
  50%     { opacity: 1; transform: translate(-50%,-50%) scale(1.12); }
}
.fz-z-normal {
  position: absolute; top: 6%;
  color: var(--z-color);
  text-shadow:
    3px 3px 0 var(--letter-shadow),
    0 0 4px var(--z-light),
    0 0 14px var(--z-color),
    0 0 28px var(--z-glow),
    0 0 50px var(--z-glow);
  animation: fzZPulse 4s ease-in-out infinite;
}
@keyframes fzZPulse {
  0%,100% { color: var(--z-color); filter: brightness(1); }
  50%     { color: var(--z-light); filter: brightness(1.15); }
}
.fz-z-electric {
  position: absolute; top: 0;
  opacity: 0; pointer-events: none;
  filter: drop-shadow(0 0 12px var(--blue)) drop-shadow(0 0 28px var(--blue));
  z-index: 3;
}
.fz-thunder {
  position: absolute; bottom: 80%; left: 50%; width: 8px; height: 0;
  background: #fff;
  box-shadow: 0 0 16px var(--blue), 0 0 50px var(--blue), 0 0 100px #fff;
  transform: translateX(-50%); z-index: 10; border-radius: 8px;
}
.fz-z-container.striking .fz-thunder { animation: fzStrike 0.22s ease-in forwards; }
.fz-z-container.striking .fz-z-normal { animation: fzHideZ 0.05s ease-out 0.15s forwards; }
.fz-z-container.striking .fz-z-electric {
  animation: fzShowBolt 0.05s ease-out 0.15s forwards, fzGlitch 0.15s 0.2s infinite;
}
@keyframes fzHideZ { to { opacity: 0; } }
@keyframes fzShowBolt { to { opacity: 1; } }
@keyframes fzStrike {
  0%   { height: 0; opacity: 1; bottom: 100%; }
  80%  { height: 420px; opacity: 1; bottom: 30%; }
  100% { height: 0; opacity: 0; bottom: 30%; }
}
@keyframes fzGlitch {
  0%,100% { opacity: 1; transform: scale(1) skewX(0); }
  30%     { opacity: 0.9; transform: scale(1.02) skewX(-2deg); }
  70%     { opacity: 0.95; transform: scale(0.98) skewX(2deg); }
}

/* ─────────────── TOPBAR ─────────────── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 900px; width: 100%; margin: 0 auto 32px;
  padding: 10px 14px 10px 18px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 14px 36px -16px rgba(30,40,90,0.18);
  animation: fadeIn 0.8s ease-out;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-logo { display: none; }
.fz-logo-simple {
  display: inline-flex; align-items: baseline;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0;
  direction: rtl;
  line-height: 1;
  user-select: none;
}
.fz-logo-simple .fz-letter {
  color: #0f172a;
  text-shadow: 2px 2px 0 rgba(37,99,235,0.18);
}
.fz-logo-simple .fz-z-bright {
  color: #2563eb;
  text-shadow:
    2px 2px 0 rgba(37,99,235,0.18),
    0 0 4px #60a5fa,
    0 0 12px #2563eb,
    0 0 24px rgba(37,99,235,0.5);
  animation: zPulse 4s ease-in-out infinite;
}
@keyframes zPulse {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-soft); text-decoration: none;
  font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.back-link:hover { background: var(--blue-soft); color: var(--blue-deep); border-color: rgba(37,99,235,0.3); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────── PAGE HEAD ─────────────── */
.page-head {
  text-align: center; max-width: 740px; margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.1s ease-out both;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--blue-deep);
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  position: relative;
}
.eyebrow .live-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--blue);
  animation: ringPulse 1.8s ease-out infinite;
}
.page-head h1 {
  font-size: 44px; font-weight: 900; line-height: 1.4; letter-spacing: -1;
  margin-bottom: 14px;
  padding: 0.15em 0;
}
.page-head h1 .shimmer {
  display: inline-block;
  padding: 0.05em 0.1em;
  background: linear-gradient(90deg, var(--blue) 0%, var(--indigo-mid) 40%, var(--blue-light) 70%, var(--blue) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}
.page-head p { font-size: 15px; color: var(--text-soft); line-height: 1.85; }
.page-head .live-stat {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-top: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px; font-size: 12.5px; color: var(--text-soft); font-weight: 600;
}
.page-head .live-stat .g-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.page-head .live-stat b { color: var(--success); font-weight: 900; }

/* ─────────────── ACCOUNT TYPE GATE ─────────────── */
.type-gate { animation: fadeUp 0.6s ease-out both; }
.type-cards {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.type-card {
  text-align: center; cursor: pointer;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid var(--border);
  border-radius: 26px; padding: 38px 30px;
  font-family: inherit;
  box-shadow: 0 24px 60px -26px rgba(30,40,90,0.28);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.type-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--indigo-mid), var(--blue-light), var(--blue), transparent);
  background-size: 200% 100%;
  animation: stripeFlow 3s linear infinite;
}
.type-card.scrap::before {
  background: linear-gradient(90deg, transparent, #059669, #34d399, #10b981, #059669, transparent);
  background-size: 200% 100%;
  animation: stripeFlow 3s linear infinite;
  transform: scaleX(-1);
}
.type-card.pickup::before {
  background: linear-gradient(90deg, transparent, #ea580c, #fb923c, #f97316, #ea580c, transparent);
  background-size: 200% 100%;
  animation: stripeFlow 3s linear infinite;
}
@keyframes stripeFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.type-card:hover { transform: translateY(-6px); box-shadow: 0 32px 70px -24px rgba(30,40,90,0.36); border-color: rgba(37,99,235,0.4); }
.type-card.scrap:hover { border-color: rgba(5,150,105,0.4); }
.type-card.pickup:hover { border-color: rgba(234,88,12,0.4); }
.tc-icon {
  width: 80px; height: 80px; border-radius: 24px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.tc-icon.maint { background: #ffffff; box-shadow: inset 0 0 0 1px rgba(37,99,235,0.2); }
.tc-icon.maint img { width: 64px; height: 64px; object-fit: contain; }
.tc-icon.scr { background: #ffffff; box-shadow: inset 0 0 0 1px rgba(5,150,105,0.25); }
.tc-icon.scr img { width: 64px; height: 64px; object-fit: contain; }
.tc-icon.pkup { background: #ffffff; box-shadow: inset 0 0 0 1px rgba(234,88,12,0.25); }
.tc-icon.pkup img { width: 64px; height: 64px; object-fit: contain; }
.type-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.type-card p { font-size: 14px; color: var(--text-soft); line-height: 1.85; margin-bottom: 22px; }
.tc-pick {
  display: inline-block; font-size: 14px; font-weight: 800;
  color: var(--blue-deep); padding: 10px 22px; border-radius: 100px;
  background: var(--blue-soft); border: 1px solid rgba(37,99,235,0.25);
  transition: all 0.2s;
}
.type-card.scrap .tc-pick { color: #059669; background: rgba(5,150,105,0.1); border-color: rgba(5,150,105,0.25); }
.type-card.pickup .tc-pick { color: #ea580c; background: rgba(234,88,12,0.1); border-color: rgba(234,88,12,0.28); }
.type-card:hover .tc-pick { background: var(--blue); color: #fff; }
.type-card.scrap:hover .tc-pick { background: #059669; color: #fff; }
.type-card.pickup:hover .tc-pick { background: #ea580c; color: #fff; }
.gate-note {
  max-width: 760px; margin: 26px auto 0;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: 16px;
  background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.18);
  font-size: 13px; color: var(--text-soft); line-height: 1.8;
}
.gate-note svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; stroke-linecap: round; stroke-linejoin: round; }
.gate-note strong { color: var(--text); font-weight: 800; }

/* type badge in header */
.type-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 7px 8px 7px 16px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--text);
}
.type-badge .tb-ic { font-size: 16px; }
.type-badge.scrap { background: rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.22); }
.type-badge.pickup { background: rgba(234,88,12,0.08); border-color: rgba(234,88,12,0.22); }
.tb-change {
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-size: 11.5px; font-weight: 800;
  padding: 6px 14px; border-radius: 100px; transition: background 0.2s;
}
.type-badge.scrap .tb-change { background: #059669; }
.type-badge.pickup .tb-change { background: #ea580c; }
.tb-change:hover { opacity: 0.88; }

@media (max-width: 980px) {
  .type-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .type-cards { grid-template-columns: 1fr; }
}

/* ─────────────── STEPPER ─────────────── */
.stepper {
  display: flex; align-items: flex-start; justify-content: space-between;
  max-width: 780px; width: 100%; margin: 0 auto 30px;
  position: relative; padding: 0 12px;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
.step-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative; z-index: 2; flex: 0 0 auto;
}
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: var(--text-dim);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  box-shadow: 0 8px 22px -10px rgba(30,40,90,0.15);
}
.step-circle::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0; transform: scale(0.8);
  transition: all 0.35s;
}
.step-item.active .step-circle {
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  color: #fff; border-color: transparent;
  box-shadow: 0 14px 30px -8px rgba(37,99,235,0.5), 0 0 0 5px rgba(37,99,235,0.12);
  transform: scale(1.08);
}
.step-item.active .step-circle::before {
  opacity: 0.5; transform: scale(1.15);
  animation: ringExpand 1.6s ease-out infinite;
}
.step-item.done .step-circle {
  background: linear-gradient(135deg, var(--success), var(--blue));
  color: #fff; border-color: transparent;
}
.step-item.done .step-circle .num { display: none; }
.step-item.done .step-circle .check { display: block; }
.step-circle .check { display: none; width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.step-label {
  font-size: 12px; font-weight: 700;
  color: var(--text-dim);
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--blue-deep); }
.step-item.done .step-label { color: var(--success); }
.step-line {
  flex: 1; height: 3px;
  background: rgba(0,0,0,0.06);
  margin-top: 24px;
  position: relative; overflow: hidden;
  border-radius: 100px;
}
.step-line .fill {
  position: absolute; inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--success), var(--blue));
  transition: right 0.6s ease-out;
  border-radius: 100px;
}
.step-line.done .fill { inset: 0 0 0 0; }

/* ─────────────── FORM CARD ─────────────── */
.form-card {
  max-width: 780px; width: 100%; margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 38px;
  box-shadow: 0 30px 80px -22px rgba(30,40,90,0.25), inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative; overflow: hidden;
  animation: fadeUp 0.8s 0.3s ease-out both;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--indigo-mid), var(--blue), transparent);
  background-size: 200% 100%;
  animation: shimmerText 4s linear infinite;
}

/* ─────────────── STEP PANELS ─────────────── */
.step-panel { display: none; animation: fadeUp 0.5s ease-out; }
.step-panel.active { display: block; }
.step-panel h2 {
  font-size: 22px; font-weight: 900;
  margin-bottom: 26px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
  text-align: right;
  display: flex; align-items: center; gap: 12px;
}
.step-panel h2 .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-deep);
  font-size: 14px; font-weight: 900;
}

/* ─────────────── FIELDS ─────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px; font-weight: 700;
  margin-bottom: 9px; color: var(--text);
}
.field label .req { color: var(--blue); margin-right: 3px; }
.field .hint {
  display: block;
  font-size: 11px; color: var(--text-dim);
  margin-top: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="password"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  outline: none;
  text-align: right;
  direction: rtl;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--text-dim); opacity: 0.6;
}
.field textarea {
  line-height: 1.7;
  resize: vertical;
  min-height: 90px;
  font-weight: 400;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: rgba(37,99,235,0.35);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 14px;
  padding-left: 40px;
  cursor: pointer;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  background: var(--danger-soft);
  animation: shake 0.35s;
}
.field .err-msg {
  display: none;
  font-size: 11.5px; color: var(--danger);
  margin-top: 6px; font-weight: 700;
}
.field.has-error .err-msg { display: block; }

/* ─────────────── CHIPS ─────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  position: relative;
  padding: 11px 18px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  font-family: inherit; font-size: 13.5px; font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  user-select: none;
}
.chip:hover {
  border-color: rgba(37,99,235,0.35);
  background: rgba(255,255,255,0.95);
}
.chip .chip-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.8px solid var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0;
}
.chip .chip-icon svg {
  width: 10px; height: 10px;
  stroke: #fff; fill: none; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(0);
  transition: all 0.2s;
}
.chip.active {
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(37,99,235,0.5);
  transform: translateY(-1px);
}
.chip.active .chip-icon {
  background: #fff; border-color: #fff;
}
.chip.active .chip-icon svg {
  opacity: 1; transform: scale(1); stroke: var(--blue);
}

/* ─────── "ناخذها ونصلحها" sub-category panel ─────── */
.takefix-field {
  background: linear-gradient(180deg, rgba(37,99,235,0.05), rgba(99,102,241,0.04));
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 16px;
  padding: 18px 18px 14px;
}
.tf-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(37,99,235,0.25);
  margin-bottom: 14px;
}
.tf-banner .tf-icon {
  font-size: 26px;
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 12px;
}
.tf-banner strong { font-size: 15px; color: var(--ink, #0f172a); }
.tf-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.tf-group {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 12px;
  padding: 12px;
}
.tf-group-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 13.5px;
  color: var(--blue, #2563eb);
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.tf-group-head .tf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue, #2563eb), var(--indigo-mid, #6366f1));
}
.tf-items {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tf-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  border: 1.5px solid rgba(15,23,42,0.12);
  background: #fff;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.tf-chip:hover { border-color: rgba(37,99,235,0.45); color: var(--blue, #2563eb); }
.tf-chip.active {
  background: linear-gradient(135deg, var(--blue, #2563eb), var(--indigo-mid, #6366f1));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.tf-chip .tf-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(15,23,42,0.08);
  transition: all 0.18s;
}
.tf-chip .tf-tick svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 3; fill: none; opacity: 0; }
.tf-chip.active .tf-tick { background: rgba(255,255,255,0.25); }
.tf-chip.active .tf-tick svg { opacity: 1; }

/* ─────────────── FILE UPLOAD ─────────────── */
.file-upload {
  position: relative;
  display: block;
  padding: 22px 22px;
  background: rgba(255,255,255,0.6);
  border: 2px dashed rgba(37,99,235,0.35);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s;
}
.file-upload:hover {
  background: rgba(37,99,235,0.08);
  border-color: var(--blue);
}
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-inner { display: flex; align-items: center; gap: 14px; }
.file-upload-info { text-align: right; flex: 1; }
.file-upload-info .main { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.file-upload-info .sub { font-size: 11.5px; color: var(--text-dim); }
.file-upload-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(67,56,202,0.12));
  border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
  transition: all 0.25s;
}
.file-upload-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.file-upload.has-file {
  background: var(--success-soft);
  border-color: var(--success);
  border-style: solid;
}
.file-upload.has-file .file-upload-icon {
  background: linear-gradient(135deg, var(--success), #059669);
  color: #fff; border-color: transparent;
}
/* صورة مصغّرة داخل الأيقونة لما يكون الملف صورة */
.file-upload-icon.has-thumb { background: #fff; border: 1px solid rgba(0,0,0,0.1); overflow: hidden; padding: 0; }
.file-upload-icon.has-thumb svg { display: none; }
.file-upload-icon.has-thumb img,
.file-upload-icon.has-thumb video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 11px;
}

/* ═══════════════════════ FILE ACTIONS (preview / remove) ═══════════════════════
   تظهر فقط لما يصير .has-file على الـwrap. أزرار صغيرة فوق-يسار.
═══════════════════════════════════════════════════════════════════════════════ */
.file-actions {
  position: absolute;
  top: 10px; left: 12px;
  display: none;
  gap: 6px;
  z-index: 3;
}
.file-upload.has-file .file-actions { display: inline-flex; }
.file-actions button {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, color 0.18s;
  box-shadow: 0 2px 6px rgba(15,23,42,0.12);
}
.file-actions button svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.file-actions button:hover { transform: translateY(-1px); }
.file-actions button.view:hover  { background: #2563eb; color: #fff; }
.file-actions button.clear:hover { background: #dc2626; color: #fff; }

/* ─────────────── DIVIDER ─────────────── */
.divider {
  margin: 28px 0 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.divider h3 {
  font-size: 14.5px; font-weight: 900;
  margin-bottom: 20px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.divider h3::before {
  content: ''; width: 4px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, var(--blue), var(--indigo-mid));
}

/* ───────────────  PHONE + WHATSAPP VERIFY  ─────────────── */
.phone-with-verify {
  display: flex; gap: 8px; align-items: stretch;
}
.phone-with-verify input { flex: 1; }
.verify-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 18px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none; border-radius: 14px;
  font-family: inherit; font-size: 13px; font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 6px 16px -4px rgba(37,211,102,0.45);
}
.verify-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -4px rgba(37,211,102,0.55);
}
.verify-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.verify-btn .wa-icon {
  width: 18px; height: 18px;
  fill: currentColor;
}
.verify-btn .vb-verified { display: none; align-items: center; gap: 6px; }
.verify-btn .vb-verified svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}
.verify-btn.verified {
  background: linear-gradient(135deg, var(--success), #059669);
  cursor: default;
}
.verify-btn.verified .vb-label,
.verify-btn.verified .wa-icon { display: none; }
.verify-btn.verified .vb-verified { display: inline-flex; }
.verify-btn.sending { opacity: 0.85; }

/* OTP box */
.otp-box {
  display: none;
  margin-top: 14px; padding: 18px;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,99,235,0.05));
  border: 1px solid rgba(37,211,102,0.28);
  border-radius: 16px;
  animation: fadeUp 0.35s cubic-bezier(.2,.7,.3,1);
}
.otp-box.show { display: block; }
.otp-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.otp-wa {
  width: 32px; height: 32px;
  fill: #25d366;
  flex-shrink: 0;
}
.otp-title {
  font-size: 13.5px; font-weight: 800; color: var(--text);
  line-height: 1.5; margin-bottom: 2px;
}
.otp-sub {
  font-size: 12px; color: var(--text-soft);
  font-weight: 600;
}
.otp-sub span { color: var(--text); font-family: monospace; font-weight: 700; }
.otp-inputs {
  display: flex; gap: 8px; justify-content: center;
  direction: ltr;
  margin-bottom: 16px;
}
.otp-inputs input {
  width: 44px; height: 52px;
  text-align: center;
  font-size: 22px; font-weight: 800;
  font-family: monospace;
  background: #ffffff;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  transition: all 0.2s;
  -moz-appearance: textfield;
}
.otp-inputs input::-webkit-outer-spin-button,
.otp-inputs input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.otp-inputs input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
  transform: translateY(-2px);
}
.otp-inputs input.filled {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.otp-box.error .otp-inputs input {
  border-color: var(--danger);
  background: var(--danger-soft);
  color: var(--danger);
  animation: shake 0.35s;
}
.otp-actions {
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
}
.otp-resend {
  background: transparent; border: none;
  color: var(--blue-deep); font-family: inherit;
  font-size: 12.5px; font-weight: 700;
  cursor: pointer; padding: 8px 4px;
  transition: opacity 0.2s;
}
.otp-resend:disabled { opacity: 0.5; cursor: not-allowed; color: var(--text-dim); }
.otp-resend:not(:disabled):hover { text-decoration: underline; }
.otp-confirm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  color: #fff;
  border: none; border-radius: 100px;
  font-family: inherit; font-size: 13.5px; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px -4px rgba(37,99,235,0.5);
  transition: all 0.2s;
}
.otp-confirm:hover { transform: translateY(-1px); }
.otp-confirm svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}
.otp-msg {
  margin-top: 12px;
  font-size: 12px; font-weight: 700;
  text-align: center; min-height: 18px;
}
.otp-msg.err { color: var(--danger); }
.otp-msg.success { color: var(--success); }

/* ───────────────  TERMS CHECKBOX  ─────────────── */
.terms-field {
  margin-top: 26px;
  padding: 18px;
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 14px;
  transition: all 0.25s;
}
.terms-field:hover {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.32);
}
.terms-field.has-error {
  background: var(--danger-soft);
  border-color: var(--danger);
  animation: shake 0.35s;
}
.terms-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; user-select: none;
  margin: 0;
}
.terms-label input[type="checkbox"] {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.terms-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: #ffffff;
  border: 2px solid rgba(0,0,0,0.18);
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}
.terms-box svg {
  width: 14px; height: 14px;
  stroke: #ffffff; fill: none;
  stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(0.4);
  transition: all 0.18s;
}
.terms-label input[type="checkbox"]:checked + .terms-box {
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  border-color: transparent;
  box-shadow: 0 6px 14px -4px rgba(37,99,235,0.55);
}
.terms-label input[type="checkbox"]:checked + .terms-box svg {
  opacity: 1; transform: scale(1);
}
.terms-text {
  flex: 1;
  font-size: 13.5px; font-weight: 600;
  color: var(--text); line-height: 1.85;
}
.terms-text a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.3);
  text-underline-offset: 3px;
  transition: all 0.2s;
}
.terms-text a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}
.terms-field .err-msg {
  display: none;
  font-size: 11.5px; color: var(--danger);
  margin-top: 10px; padding-right: 34px; font-weight: 700;
}
.terms-field.has-error .err-msg { display: block; }

/* ─────────────── PASSWORD TOGGLE ─────────────── */
.password-wrap { position: relative; }
.password-toggle {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer;
  color: var(--text-dim); padding: 6px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.password-toggle:hover { color: var(--blue-deep); background: var(--blue-soft); }
.password-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.password-wrap input { padding-left: 44px; }

/* ─────────────── ACTIONS ─────────────── */
.actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 30px;
  padding-top: 24px; border-top: 1px solid var(--border-soft);
}
.btn {
  font-family: inherit; font-weight: 800; font-size: 14px;
  padding: 14px 28px; border-radius: 100px;
  cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
}
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37,99,235,0.5);
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--text-soft);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-color: rgba(37,99,235,0.3);
}
.btn-submit {
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  color: #fff;
  box-shadow: 0 14px 32px -8px rgba(37,99,235,0.55);
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; animation: none; }

/* ─────────────── FOOTNOTE ─────────────── */
.foot-note {
  text-align: center;
  font-size: 12.5px; color: var(--text-dim);
  margin-top: 28px;
  max-width: 780px; margin-left: auto; margin-right: auto;
  display: flex; align-items: center; justify-content: center; gap: 22px;
  flex-wrap: wrap;
}
.foot-note span { display: inline-flex; align-items: center; gap: 7px; }
.foot-note svg {
  width: 14px; height: 14px;
  stroke: var(--blue); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ─────────────── SUCCESS SCREEN ─────────────── */
.success-screen {
  display: none;
  text-align: center; padding: 22px 18px 8px;
  animation: fadeIn 0.6s ease-out;
}
.success-screen.show { display: block; }
.success-icon {
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--success-soft);
  border: 3px solid var(--success);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  animation: successPop 0.7s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.success-icon::before {
  content: ''; position: absolute; inset: -14px;
  border-radius: 50%;
  border: 2px solid var(--success);
  animation: ringExpand 1.8s ease-out infinite;
}
.success-icon svg {
  width: 58px; height: 58px;
  stroke: var(--success); fill: none;
  stroke-width: 3.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 50;
  animation: checkDraw 0.7s ease-out 0.3s both;
}
.success-screen h2 {
  font-size: 32px; font-weight: 900;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--success), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.success-screen .ref {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  padding: 8px 18px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px;
  color: var(--blue-deep);
  margin: 16px 0 22px;
  letter-spacing: 2px; direction: ltr;
  font-family: monospace;
}
.success-screen p {
  font-size: 14.5px; color: var(--text-soft);
  line-height: 1.95; max-width: 500px; margin: 0 auto 28px;
}
.success-screen .info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 520px; margin: 0 auto 30px;
}
.info-pill {
  padding: 16px 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: right;
  position: relative; overflow: hidden;
}
.info-pill .lbl {
  font-size: 11px; color: var(--text-dim);
  margin-bottom: 6px; font-weight: 700; letter-spacing: 1;
}
.info-pill .val {
  font-size: 14px; font-weight: 800; color: var(--text);
}
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* CONFETTI */
.confetti-piece {
  position: fixed; top: 0; width: 9px; height: 16px;
  pointer-events: none; z-index: 9999;
  animation: confettiFall 3s linear forwards;
  border-radius: 2px;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 720px) {
  .form-card { padding: 26px 20px; border-radius: 22px; }
  .page-head h1 { font-size: 30px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 0; }
  .step-label { font-size: 10px; }
  .step-circle { width: 42px; height: 42px; font-size: 14px; }
  .step-line { margin-top: 19px; }
  .actions { flex-direction: column-reverse; }
  .actions .btn { width: 100%; justify-content: center; }
  .success-screen .info-grid { grid-template-columns: 1fr; }
  .step-panel h2 { font-size: 18px; }
  /* ─────────────── TECH CARD (team step) ─────────────── */
.tech-card {
  position: relative;
  background: var(--glass);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.tech-card:hover { border-color: rgba(37,99,235,0.35); }
.tech-card .tech-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 10px; border-bottom: 1px dashed rgba(0,0,0,0.08);
  margin-bottom: 4px;
}
.tech-card .tech-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; color: var(--blue-deep);
}
.tech-card .tech-num .badge-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo-mid));
  color: #fff; font-size: 12px; font-weight: 800;
}
.tech-card .tech-remove {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(220,38,38,0.3);
  color: #b91c1c; font-size: 12px; font-weight: 700;
  padding: 7px 12px; border-radius: 100px; cursor: pointer;
  transition: all .2s;
}
.tech-card .tech-remove:hover { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.5); }
.tech-card .tech-remove svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tech-card .tech-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tech-card .field { margin-bottom: 0; }
.tech-card .field label { font-size: 12px; font-weight: 700; }
.tech-card .file-upload { padding: 12px 14px; }
.tech-card .file-upload-icon { width: 36px; height: 36px; }
.tech-card .file-upload-info .main { font-size: 12.5px; }
.tech-card .file-upload-info .sub { font-size: 10.5px; }
@media (max-width: 600px) {
  .tech-card .tech-row { grid-template-columns: 1fr; }
}
