/* ===== GLOBAL RESETS & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --navy: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --cyan: #06b6d4;
  --radius: 1rem;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--navy); color: #f1f5f9; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--emerald-dark); border-radius: 3px; }

/* ===== KEYFRAMES ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; transform: scaleY(1); }
  to   { opacity: 0; transform: scaleY(0); max-height: 0; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(2deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes spin3D {
  0%   { transform: rotateY(0deg) rotateX(10deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}
@keyframes spin3DReverse {
  0%   { transform: rotateY(360deg) rotateX(-10deg); }
  100% { transform: rotateY(0deg) rotateX(-10deg); }
}
@keyframes orbitRing {
  0%   { transform: rotateZ(0deg) rotateX(70deg); }
  100% { transform: rotateZ(360deg) rotateX(70deg); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px 4px rgba(16,185,129,0.25), 0 0 60px 8px rgba(6,182,212,0.1); }
  50%       { box-shadow: 0 0 40px 8px rgba(16,185,129,0.45), 0 0 80px 15px rgba(6,182,212,0.2); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotateCoin {
  0%   { transform: perspective(800px) rotateY(0deg) scale(1); }
  50%  { transform: perspective(800px) rotateY(180deg) scale(1.05); }
  100% { transform: perspective(800px) rotateY(360deg) scale(1); }
}
@keyframes glowBorder {
  0%, 100% { border-color: rgba(16,185,129,0.3); }
  50%       { border-color: rgba(16,185,129,0.8); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroParallax {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}
@keyframes tableRowGlow {
  0%, 100% { background-color: rgba(255,255,255,0.03); }
  50%       { background-color: rgba(16,185,129,0.08); }
}
@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* ===== GLASS NAV ===== */
.glass-nav {
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(16,185,129,0.1);
}
.modal-card {
  background: rgba(17,24,39,0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}

/* ===== INPUT FIELDS ===== */
.input-field {
  background: rgba(30,41,59,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f1f5f9;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
}
.input-field:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  background: rgba(30,41,59,1);
}
.input-field::placeholder { color: rgba(148,163,184,0.6); }
.input-field option { background: #1e293b; color: #f1f5f9; }
.label { display: block; font-size: 0.8125rem; font-weight: 500; color: #94a3b8; margin-bottom: 0.375rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
  font-size: 0.9375rem;
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  color: #94a3b8;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); color: #f1f5f9; border-color: rgba(255,255,255,0.2); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--emerald-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-text {
  background: linear-gradient(90deg, var(--emerald-light) 0%, #fff 40%, var(--cyan) 60%, var(--emerald-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ===== 3D SPINNING ANIMATION ===== */
.scene-3d {
  width: 320px;
  height: 320px;
  perspective: 1000px;
  position: relative;
  margin: auto;
}
.cube-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spin3D 18s linear infinite;
}
.coin-3d {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: rotateCoin 8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(16,185,129,0.6));
}
.coin-face {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}
.coin-front {
  background: radial-gradient(circle at 35% 35%, #34d399, #059669, #064e3b);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 0 40px rgba(16,185,129,0.5);
}
.coin-back {
  background: radial-gradient(circle at 65% 35%, #06b6d4, #0891b2, #0c4a6e);
  transform: rotateY(180deg);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 0 40px rgba(6,182,212,0.5);
}

/* Orbit rings around 3D object */
.orbit-ring {
  position: absolute;
  border: 2px solid rgba(16,185,129,0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 {
  width: 260px; height: 260px;
  animation: orbitRing 6s linear infinite;
  border-color: rgba(16,185,129,0.3);
}
.orbit-ring-2 {
  width: 300px; height: 300px;
  animation: orbitRing 10s linear infinite reverse;
  border-color: rgba(6,182,212,0.25);
}
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
}
.orbit-dot-green { background: var(--emerald); box-shadow: 0 0 10px var(--emerald); }
.orbit-dot-cyan  { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}
.particle-1 { width:8px; height:8px; background:var(--emerald); top:10%; left:15%; opacity:0.7; animation-delay:0s; }
.particle-2 { width:5px; height:5px; background:var(--cyan); top:20%; right:10%; opacity:0.5; animation-delay:1s; }
.particle-3 { width:6px; height:6px; background:#a78bfa; top:75%; left:8%; opacity:0.6; animation-delay:2s; }
.particle-4 { width:4px; height:4px; background:var(--emerald-light); bottom:15%; right:15%; opacity:0.5; animation-delay:0.5s; }
.particle-5 { width:7px; height:7px; background:var(--cyan); top:50%; left:5%; opacity:0.4; animation-delay:1.5s; }

/* ===== HERO SECTION ===== */
.hero-bg {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16,185,129,0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(6,182,212,0.1), transparent);
}

/* ===== STATS BAR ===== */
.stat-card {
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); }

/* ===== REVIEW CAROUSEL ===== */
.carousel-container { overflow: hidden; position: relative; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.review-card {
  min-width: 300px;
  margin-right: 1rem;
  background: rgba(30,41,59,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(16,185,129,0.3); }
.star { color: #fbbf24; }

/* ===== STEP FORM ===== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(30,41,59,0.8);
  color: #64748b;
}
.step-dot.active {
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  border-color: transparent;
  color: white;
  box-shadow: 0 0 20px rgba(16,185,129,0.4);
}
.step-dot.completed {
  background: var(--emerald-dark);
  border-color: transparent;
  color: white;
}
.step-line {
  width: 60px; height: 2px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.step-line.completed { background: var(--emerald); }

.form-step { display: none; animation: fadeSlideUp 0.4s ease forwards; }
.form-step.active { display: block; }

/* ===== FILE UPLOAD ===== */
.upload-zone {
  border: 2px dashed rgba(16,185,129,0.3);
  border-radius: 0.875rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(16,185,129,0.03);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--emerald);
  background: rgba(16,185,129,0.08);
}
.file-thumb {
  position: relative;
  display: inline-block;
  margin: 0.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.file-thumb img { width: 72px; height: 72px; object-fit: cover; display: block; }
.file-thumb-remove {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: rgba(239,68,68,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  color: white;
  line-height: 1;
}

/* ===== TRACK STATUS TIMELINE ===== */
.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  z-index: 1;
}
.timeline-dot.done { background: var(--emerald); box-shadow: 0 0 12px rgba(16,185,129,0.4); }
.timeline-dot.pending { background: rgba(30,41,59,0.8); border: 2px solid rgba(255,255,255,0.1); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-pending { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.status-approved { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
.status-rejected { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.status-processing { background: rgba(6,182,212,0.15); color: #22d3ee; border: 1px solid rgba(6,182,212,0.25); }

/* ===== ADMIN TABLE ===== */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.admin-table td {
  padding: 1rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #cbd5e1;
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(16,185,129,0.05); }
.admin-table tr { animation: fadeIn 0.4s ease; }

.edit-input {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 0.5rem;
  padding: 0.375rem 0.625rem;
  color: #f1f5f9;
  font-size: 0.8125rem;
  width: 100%;
  min-width: 120px;
  outline: none;
}
.edit-input:focus { border-color: var(--emerald); box-shadow: 0 0 0 2px rgba(16,185,129,0.15); }

/* ===== PROCESS STEPS ===== */
.process-step {
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  animation: fadeSlideUp 0.6s ease forwards;
}
.process-step:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.process-icon {
  width: 52px; height: 52px;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  animation: slideUp 0.3s ease;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast-success { background: rgba(5,150,105,0.95); color: white; border: 1px solid rgba(52,211,153,0.3); }
.toast-error   { background: rgba(185,28,28,0.95); color: white; border: 1px solid rgba(248,113,113,0.3); }

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinner 0.7s linear infinite;
  display: inline-block;
}

/* ===== TRUST BADGES ===== */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  transition: all 0.3s;
}
.trust-badge:hover { border-color: rgba(16,185,129,0.25); }

/* ===== PRIVACY/ABOUT PAGE ===== */
.content-section {
  background: rgba(30,41,59,0.4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* ===== ANIMATIONS UTILS ===== */
.animate-in    { animation: fadeSlideUp 0.5s ease forwards; }
.animate-left  { animation: slideInLeft 0.5s ease forwards; }
.delay-100     { animation-delay: 0.1s; opacity: 0; }
.delay-200     { animation-delay: 0.2s; opacity: 0; }
.delay-300     { animation-delay: 0.3s; opacity: 0; }
.delay-400     { animation-delay: 0.4s; opacity: 0; }
.delay-500     { animation-delay: 0.5s; opacity: 0; }

/* ===== BOUNCE ARROW ===== */
.bounce-x { animation: bounce-x 1s ease-in-out infinite; }

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 640px) {
  .scene-3d { width: 240px; height: 240px; }
  .coin-3d  { width: 150px; height: 150px; }
  .coin-face { width: 150px; height: 150px; }
  .orbit-ring-1 { width: 200px; height: 200px; }
  .orbit-ring-2 { width: 232px; height: 232px; }
  .review-card  { min-width: 260px; }
}

/* ===================================================================
   BANK PARTNER TICKER — Infinite scroll + 3D flip cards
   =================================================================== */

/* Keyframe: continuous left scroll */
@keyframes bankScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Outer wrapper: clips overflow, adds fade edges */
.bank-ticker-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track: double-length for seamless loop, pause on hover */
.bank-ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: bankScroll 32s linear infinite;
}
.bank-ticker-track:hover {
  animation-play-state: paused;
}

/* ===== BANK CARD — 3D flip on hover ===== */
.bank-card {
  width: 170px;
  height: 90px;
  flex-shrink: 0;
  perspective: 600px;
  cursor: pointer;
}

.bank-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 0.875rem;
}

.bank-card:hover .bank-card-inner {
  transform: rotateY(180deg);
}

/* Front face: grayscale by default, color+glow on card hover */
.bank-card-front,
.bank-card-back {
  position: absolute;
  inset: 0;
  border-radius: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bank-card-front {
  background: rgba(20, 30, 50, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  filter: grayscale(1) brightness(0.8);
  transition: filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.bank-card:hover .bank-card-front {
  /* won't be visible after flip, but transition reset keeps it smooth */
  filter: grayscale(0) brightness(1.05);
}

.bank-card-back {
  border-radius: 0.875rem;
  transform: rotateY(180deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px color-mix(in srgb, var(--bank-color) 40%, transparent);
  border: 1px solid rgba(255,255,255,0.2);
  flex-direction: column;
  gap: 0.25rem;
}

.bank-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bank-name {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  max-width: 140px;
}

/* ===== COMPLIANCE BADGE GRID ===== */
.compliance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
  gap: 0.25rem;
}
.compliance-badge:hover {
  border-color: rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== CUSTOM LIVE CHAT ===== */
.chat-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 25px rgba(16,185,129,0.4);
}
.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 320px;
  z-index: 9998;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.chat-window.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(20px);
}

