:root{
  --bg0: #070a12;
  --bg1: #0a1224;

  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.1);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);

  --accent: #2b8cff;
  --accent2: #00f0ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow2: 0 12px 28px rgba(2, 6, 23, 0.35);
  --radius: 18px;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #001223;
  background-attachment: fixed;
  overflow-x: hidden;
}
.icon-hero{
  width: 50px;
  height: auto;
}
/* Background blobs */
.bg-blobs{ position:fixed; inset:0; z-index:-1; overflow:hidden; }
.blob{
  position:absolute;
  width: 520px;
  height: 520px;
  filter: blur(60px);
  opacity:0.55;
  border-radius: 50%;
  transform: translate3d(0,0,0);
}
.blob-a{ left:-140px; top:-160px; background: rgba(43,140,255,0.45); }
.blob-b{ right:-180px; top:120px; background: rgba(0,240,255,0.28); }
.blob-c{ left:15%; bottom:-220px; background: rgba(43,140,255,0.22); }

.grid-overlay{
position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  mask-image: radial-gradient(circle at 30% 10%, black 10%, transparent 60%);
}

/* Container */
.container{ width:min(1160px, 92%); margin:0 auto; }

/* Navbar */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(7,10,16,0.35);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled{
  background: rgba(7,10,16,0.62);
  box-shadow: var(--shadow2);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
}
.brand-logo{ width: 100px; height: auto; object-fit:contain; }
.brand-name{
  font-family:"Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.menu{
  display:flex;
  gap: 26px;
  margin-left: auto;
  margin-right: auto;
}
.menu a{
  text-decoration:none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease, text-shadow .2s ease;
}
.menu a:hover{
  color: #fff;
  text-shadow: 0 0 14px rgba(43,140,255,0.35);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav-auth-link{ text-decoration:none; }

/* Buttons */
.btn{
  appearance:none;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  user-select:none;
}

.btn-sm{ padding: 9px 14px; border-radius: 12px; font-size: 13px; }
.btn-md{ padding: 12px 16px; border-radius: 14px; font-size: 14px; }
.btn-lg{ padding: 14px 18px; border-radius: 16px; font-size: 15px; }

.btn-light{
  background: rgba(255,255,255,0.92);
  color: #0b1220;
  border-color: rgba(255,255,255,0.18);
}
.btn-light:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.30); }

.btn-accent{
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
  color: #061019;
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(43,140,255,0.18);
}
.btn-accent:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(43,140,255,0.30);
}

.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.35);
  border-color: rgba(0,240,255,0.30);
}

.w-100{ width:100%; }

/* Burger */
.burger{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 6px;
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu{
  position:absolute;
  right: 16px;
  top: 68px;
  width: min(340px, 92vw);
  background: rgba(7,10,16,0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px;
  display:none;
  flex-direction:column;
  gap: 10px;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-menu.active{
  display:flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events:auto;
}

.mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 6px 10px;
}
.mobile-title{ font-weight: 700; color: rgba(255,255,255,0.92); }
.mobile-close{
  border:none;
  background: rgba(255,255,255,0.06);
  color:#fff;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor:pointer;
}

.mobile-menu a{
  color: rgba(255,255,255,0.86);
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease;
}
.mobile-menu a:hover{ background: rgba(255,255,255,0.06); }
.mobile-divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 8px 0;
}

/* Hero */
.hero{
  padding: 64px 0 34px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items:center;
  min-height: 520px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  margin-bottom: 16px;
}
.hero-badge .dot{
  width: 10px; height:10px; border-radius:50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}

.hero-title{
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.hero-subtitle{
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 560px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.chip{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.chip b{ color:#fff; }

/* Mock card */
.hero-right{ position:relative; }
.hero-glow{
  position:absolute;
  inset:-30px -20px -30px -20px;
  background: radial-gradient(550px 350px at 50% 40%, rgba(43,140,255,0.18), transparent 55%);
  filter: blur(18px);
  z-index:-1;
}
.mock-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
  overflow:hidden;
  position:relative;
}
.mock-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(450px 240px at 20% 0%, rgba(0,240,255,0.12), transparent 55%),
              radial-gradient(420px 260px at 90% 20%, rgba(43,140,255,0.14), transparent 50%);
  pointer-events:none;
}

.mock-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 14px;
  position:relative;
}
.mock-pill{
  background: rgba(0,240,255,0.10);
  border: 1px solid rgba(0,240,255,0.16);
  color: rgba(255,255,255,0.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.mock-status{
  color: rgba(16,185,129,0.95);
  font-weight: 700;
  font-size: 13px;
}

.mock-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position:relative;
}
.mock-row:last-of-type{ border-bottom:none; }
.mock-label{
  color: var(--muted2);
  font-size: 13px;
}
.mock-value{
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 13px;
  text-align:right;
}

.mock-divider{
  height:1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0;
  position:relative;
}

.mock-actions{
  display:flex;
  gap: 10px;
  position:relative;
}
.mock-btn{
  flex:1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.80));
  color:#061019;
}
.mock-btn.ghost{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.90);
}

.mock-foot{
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  position:relative;
}
.spark{
  width: 10px; height:10px; border-radius:50%;
  background: rgba(0,240,255,0.85);
  box-shadow: 0 0 0 6px rgba(0,240,255,0.12);
}

/* Stats */
.stats{ padding: 18px 0 10px; }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.stat-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.45);
  border-color: rgba(0,240,255,0.20);
}
.stat-icon{ font-size: 26px; margin-bottom: 10px; }
.stat-num{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 4px;
}
.stat-title{
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: 6px;
}
.stat-sub{
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.4;
}

/* Sections */
.section-head{
  text-align:center;
  margin: 64px 0 22px;
}
.section-head h2{
  font-size: 34px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.section-head p{
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features */
.features{ padding: 14px 0 8px; }
.features-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, border-color .18s ease;
}
.feature:hover{
  transform: translateY(-4px);
  border-color: rgba(43,140,255,0.22);
}
.feature-ico{
  font-size: 30px;
  margin-bottom: 10px;
}
.feature h3{
  font-size: 18px;
  margin-bottom: 10px;
}
.feature ul{ list-style:none; display:flex; flex-direction:column; gap: 8px; }
.feature li{
  color: rgba(255,255,255,0.74);
  position:relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
}
.feature li::before{
  content:"→";
  position:absolute;
  left:0;
  color: rgba(0,240,255,0.85);
}

/* Steps */
.steps{ padding: 14px 0 10px; }
.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, border-color .18s ease;
}
.step:hover{
  transform: translateY(-4px);
  border-color: rgba(0,240,255,0.22);
}
.step-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 12px;
}
.step-num{
  font-weight: 800;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
}
.step-ico{ font-size: 26px; }
.step h3{ font-size: 18px; margin-bottom: 8px; }
.step p{ color: rgba(255,255,255,0.72); line-height: 1.5; font-size: 14px; }

/* CTA */
.cta{
  padding: 56px 0 70px;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
}
.cta-left h2{ font-size: 26px; margin-bottom: 8px; }
.cta-left p{ color: var(--muted); line-height: 1.6; }
.cta-right{ display:flex; gap: 10px; flex-wrap:wrap; }

/* Footer */
.site-footer{
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,10,16,0.35);
  backdrop-filter: blur(14px);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-left .footer-brand{ font-weight: 800; }
.footer-left .footer-sub{ color: rgba(255,255,255,0.65); margin-top: 6px; font-size: 13px; }
.footer-nav{
  display:flex;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-nav a{
  color: rgba(255,255,255,0.70);
  text-decoration:none;
  font-size: 14px;
  transition: color .18s ease, text-shadow .18s ease;
}
.footer-nav a:hover{
  color:#fff;
  text-shadow: 0 0 14px rgba(43,140,255,0.35);
}

/* Floating chat */
.floating-chat-link{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.78));
  color: #061019;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow: 0 16px 40px rgba(43,140,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
  z-index: 80;
}
.floating-chat-link:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 56px rgba(43,140,255,0.28);
}
.chat-icon-wrapper{ position:relative; display:flex; align-items:center; justify-content:center; }
.notification-badge{
  position:absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 50%;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.profile-avatar:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(43,140,255,0.18);
  border-color: rgba(0, 0, 0, 0.6);
}


.profile-link{ display:inline-flex; align-items:center; justify-content:center; text-decoration:none; }

/* Logout button */
.logout-btn{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.logout-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  border-color: rgba(0,240,255,0.22);
}

/* Responsive */
@media (max-width: 980px){
  .menu{ display:none; }
  .burger{ display:flex; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 44px; }
  .hero-right{ order: 2; }
  .stats-grid{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 560px){
  .hero{ padding-top: 52px; }
  .hero-title{ font-size: 36px; }
  .hero-subtitle{ font-size: 16px; }
  .btn-lg{ width: 100%; }
  .hero-actions{ width: 100%; }
  .cta-right{ width: 100%; }
  .cta-right .btn-lg{ width: 100%; }
}



#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f8fafc;
  font-size: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-left: 4px solid #2b8cff;
}

.toast.success {
  border-left: 4px solid #22c55e;
}


.iconss{
  width: 50px;
  height: auto;
}


.icon2{
  width: 45px;
  height: auto;
}

.iconshumans{
  width: 45px;
  height: auto;
}

.ai-widget{
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 120;
}

.ai-widget__toggle{
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  color: #061019;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
  box-shadow: 0 18px 42px rgba(43,140,255,0.28);
}

.ai-widget__panel{
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 460px;
  height: 680px;
  display: none;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(7,10,16,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.ai-widget__panel.active{
  display: flex;
}

.ai-widget__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.ai-widget__title{
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.ai-widget__subtitle{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

.ai-widget__close{
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.ai-widget__messages{
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg{
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.45;
  font-size: 14px;
  white-space: pre-wrap;
}

.ai-msg--assistant{
  align-self: flex-start;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-msg--user{
  align-self: flex-end;
  color: #061019;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
}

.ai-loads{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.ai-load-card{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-load-route{
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ai-load-meta{
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.ai-load-link{
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 550;
  color: #061019;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
}

.ai-widget__form{
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.ai-widget__input{
  flex: 1;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.ai-widget__input::placeholder{
  color: rgba(255,255,255,0.42);
}

.ai-widget__send{
  height: 52px;
  padding: 0 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  color: #061019;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
}

@media (max-width: 640px){
  .ai-widget{
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .ai-widget__toggle{
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ai-widget__panel{
    right: 0;
    left: 0;
    width: 100%;
    height: 76vh;
    bottom: 82px;
  }
} 


.ai-load-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ai-load-price{
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  color: #00f0ff;
}

.ai-load-type{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}

.ai-load-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ai-load-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-load-tag--status{
  color: #061019;
  background: linear-gradient(90deg, rgba(43,140,255,1), rgba(0,240,255,0.85));
  border: none;
}

.ai-load-actions{
  display: flex;
  justify-content: flex-start;
}

.ai-widget__quick{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
  background: rgba(255,255,255,0.03);
}

.ai-quick-btn{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ai-quick-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,240,255,0.28);
  background: rgba(255,255,255,0.1);
}