﻿:root{
  --ink:#15104D;
  --muted:#808080;
  --line:#9F9F9F;
  --surface:#ffffff;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}

.help-page{
  width:100%;
  max-width:375px;
  margin:0 auto;
  padding:16px 20px 32px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.help-head h1{
  margin:0;
  color:#000;
  font-size:20px;
  font-weight:600;
  line-height:21px;
}

.help-search{
  margin-top:16px;
  width:100%;
  display:flex;
  align-items:center;
  border:1px solid #808080;
  border-radius:8px;
  background:#fff;
  box-shadow:0 1px 2px rgba(0,0,0,0.05);
}

.help-search-icon{
  padding:0 0 0 13px;
  color:#808080;
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.help-search-icon svg{
  width:20px;
  height:20px;
  display:block;
}

.help-search input{
  width:100%;
  height:48px;
  border:0;
  outline:0;
  padding:14px 13px 14px 8px;
  font-size:14px;
  line-height:21px;
  color:#101828;
}

.help-search input::placeholder{color:#808080;}

.help-tabs{
  margin-top:16px;
  display:flex;
  border-bottom:1px solid #D0D0D0;
  box-shadow:0 1px 4px rgba(0,0,0,0.1);
}

.help-tab{
  flex:1;
  border:0;
  background:#fff;
  color:#808080;
  font-size:12px;
  line-height:19px;
  font-weight:400;
  padding:10px;
  cursor:pointer;
}

.help-tab.is-active{
  color:#000;
  border-bottom:2px solid #000;
}

.help-tab:disabled{cursor:not-allowed;}

.help-content{
  display:flex;
  flex-direction:column;
  gap:0;
}

.help-group{
  display:flex;
  flex-direction:column;
}

.help-group h2{
  margin:16px 0 0;
  color:#000;
  font-size:16px;
  font-weight:600;
  line-height:21px;
}

.help-row{
  width:100%;
  border:0;
  border-bottom:0.5px solid var(--line);
  background:#fff;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
  padding:16px 0;
  text-align:left;
  color:var(--ink);
  font-size:16px;
  font-weight:400;
  line-height:24px;
  cursor:pointer;
}

.help-row span:last-child{
  color:#808080;
  font-size:24px;
  line-height:24px;
}

.help-row.is-hidden,
.help-group.is-hidden{display:none;}

.help-contact{
  margin-top:8px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.help-contact h2{
  margin:0;
  color:#000;
  font-size:16px;
  font-weight:600;
  line-height:21px;
}

.help-contact p{
  margin:0;
  color:#808080;
  font-size:14px;
  font-weight:400;
  line-height:24px;
}

.help-chat-btn{
  width:100%;
  border:0;
  border-radius:8px;
  background:#000;
  color:#fff;
  text-decoration:none;
  text-align:center;
  padding:16px;
  font-size:14px;
  font-weight:500;
  line-height:21px;
  letter-spacing:0.25px;
}

.help-empty{
  border:1px solid #E4E7EC;
  border-radius:8px;
  padding:14px;
  color:#475467;
}

.help-empty strong{
  display:block;
  margin-bottom:4px;
  color:#101828;
}

.help-empty p{margin:0;}

.is-hidden{display:none;}
