*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f7fb;
  color:#0f172a;
  overflow-x:hidden;
}

.rightMenuBtn{
  position:fixed;
  top:18px;
  right:18px;
  z-index:9999;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:#0f172a;
  color:#fff;
  font-size:1.4rem;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(0,0,0,.25);
}

.rightMenu{
  position:fixed;
  top:76px;
  right:18px;
  z-index:9999;
  background:#fff;
  border-radius:18px;
  padding:14px;
  display:none;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.rightMenu.show{
  display:block;
}

.rightMenu a{
  text-decoration:none;
  color:#0f172a;
  font-weight:900;
}

.hero{
  min-height:420px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:70px 8%;
  background:
    linear-gradient(135deg,rgba(15,23,42,.94),rgba(21,128,61,.78)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  color:#fff;
}

.heroGlow{
  position:absolute;
  width:420px;
  height:420px;
  right:-120px;
  bottom:-140px;
  background:radial-gradient(circle,rgba(34,197,94,.6),transparent 65%);
}

.heroContent{
  position:relative;
  max-width:680px;
  z-index:2;
}

.heroContent small{
  display:inline-block;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.22);
  padding:9px 14px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:18px;
}

.heroContent h1{
  font-size:clamp(3rem,8vw,6rem);
  line-height:.92;
  margin-bottom:18px;
}

.heroContent h1 span{
  color:#22c55e;
}

.heroContent p{
  max-width:560px;
  font-size:1.12rem;
  line-height:1.6;
  color:rgba(255,255,255,.88);
}

.orangeLine{
  width:110px;
  height:6px;
  background:#22c55e;
  border-radius:999px;
  margin-top:24px;
}

.page{
  padding:34px 6% 90px;
}

.tiles{
  max-width:1180px;
  margin:-70px auto 0;
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.tile{
  min-height:145px;
  border:none;
  border-radius:28px;
  background:#fff;
  box-shadow:0 20px 45px rgba(15,23,42,.12);
  cursor:pointer;
  font-size:2.3rem;
  transition:.25s ease;
}

.tile span{
  display:block;
  margin-top:14px;
  font-size:.98rem;
  font-weight:900;
  color:#0f172a;
}

.tile:hover{
  transform:translateY(-7px);
  box-shadow:0 26px 60px rgba(34,197,94,.22);
}

.modalBg{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.76);
  backdrop-filter:blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:99999;
}

.supportBox{
  width:100%;
  max-width:560px;
  background:#fff;
  border-radius:32px;
  padding:28px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.supportBox.center{
  text-align:center;
}

.xBtn{
  position:absolute;
  top:16px;
  right:16px;
  border:none;
  background:#ecfdf5;
  color:#15803d;
  width:40px;
  height:40px;
  border-radius:14px;
  font-size:1.4rem;
  font-weight:900;
  cursor:pointer;
}

.supportTop small{
  display:inline-block;
  color:#15803d;
  background:#ecfdf5;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:14px;
}

.supportTop h2{
  font-size:1.9rem;
  margin-bottom:8px;
}

.supportTop p{
  color:#64748b;
  line-height:1.5;
  margin-bottom:18px;
}

input,
select,
textarea{
  width:100%;
  border:1px solid #dbe3ef;
  border-radius:18px;
  padding:16px;
  font-size:1rem;
  outline:none;
}

textarea{
  min-height:130px;
  resize:none;
}

.supportActions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.supportActions button{
  flex:1;
  border:none;
  border-radius:16px;
  padding:15px;
  font-weight:900;
  cursor:pointer;
}

#backBtn{
  background:#e2e8f0;
  color:#0f172a;
}

#nextBtn{
  background:#16a34a;
  color:#fff;
}

#nextBtn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.reviewCard{
  background:#f8fbff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:16px;
  display:grid;
  gap:10px;
}

.spinner{
  width:76px;
  height:76px;
  border:8px solid #dcfce7;
  border-top-color:#16a34a;
  border-radius:50%;
  margin:0 auto 18px;
  animation:spin .9s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg)}
}

.siteFooter{
  text-align:center;
  background:#0f172a;
  color:#fff;
  padding:20px;
  font-weight:900;
}

/* BOOKING PAGE */
.matchPage{
  min-height:100vh;
  padding:26px;
  background:linear-gradient(135deg,#052e16,#0f172a);
}

.matchCard{
  max-width:1120px;
  margin:auto;
  background:#fff;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.matchTop{
  padding:34px 28px;
  background:linear-gradient(135deg,#0f172a,#16a34a);
  color:#fff;
}

.backLink{
  display:inline-flex;
  margin-bottom:16px;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.16);
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
}

.matchBody{
  padding:24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.panel{
  background:#f8fbff;
  border:1px solid #e5e7eb;
  border-radius:26px;
  padding:20px;
}

.detailsGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.detailItem{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:14px;
}

.detailItem.full{
  grid-column:1 / -1;
}

.detailItem small{
  display:block;
  color:#64748b;
  font-weight:900;
  font-size:.72rem;
  text-transform:uppercase;
  margin-bottom:6px;
}

.techList{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.techCard{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:18px;
}

.techTop{
  display:flex;
  gap:14px;
  align-items:center;
}

.avatar{
  width:60px;
  height:60px;
  border-radius:18px;
  background:linear-gradient(135deg,#16a34a,#0f172a);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:1.3rem;
}

.techName{
  font-weight:900;
  font-size:1.08rem;
}

.techRole{
  color:#475569;
  margin-top:3px;
}

.online{
  color:#16a34a;
  font-weight:900;
  margin-top:6px;
  font-size:.85rem;
}

.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.badge{
  background:#ecfdf5;
  color:#166534;
  padding:7px 10px;
  border-radius:999px;
  font-size:.74rem;
  font-weight:900;
}

.techMeta{
  margin-top:12px;
  color:#475569;
}

.assignBtn{
  width:100%;
  margin-top:14px;
  border:none;
  border-radius:16px;
  padding:15px;
  background:#16a34a;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.assignBtn.assigned{
  background:#0f172a;
}

.bottomBar{
  padding:20px 24px 26px;
  border-top:1px solid #e5e7eb;
  color:#475569;
  font-weight:900;
}

@media(max-width:900px){
  .tiles,
  .matchBody{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .hero{
    min-height:390px;
    padding:80px 24px;
  }

  .tiles,
  .matchBody,
  .detailsGrid{
    grid-template-columns:1fr;
  }

  .tile{
    min-height:120px;
  }

  .supportBox{
    border-radius:24px;
    padding:22px;
  }

  .matchPage{
    padding:12px;
  }

  .matchCard{
    border-radius:24px;
  }
}