:root{
  --navy:#1B2D70;
  --cyan:#00A7DD;
  --bg:#F4F6FB;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#6b7280;
  --line:#e5e7eb;
  --tint:#F8FBFF;
}

*{box-sizing:border-box}
html, body{height:100%}

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu;
  color:var(--text);
  background: var(--bg);
}

.page{
  min-height:100vh;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(0,167,221,.10), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(27,45,112,.08), transparent 60%),
    var(--bg);
}

.wrap{
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
}

/* HEADER */
.header{
  padding: 26px 16px 18px;
  background: #ffffff;
  border-bottom: 1px solid #e6edf5;
}

.headerInner{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;

  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 12px;
}

.headerLogo{
  max-width: 190px;
  height:auto;
  display:block;
}

.headerText h1{
  margin:0;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .2px;
}

.headerText p{
  margin: 0;
  font-size: 14px;
  color: #5f6f86;
}

/* FAQ info block */
.faqInfo{
  margin: 18px auto 0;
  background: var(--tint);
  border: 1px solid rgba(0,167,221,.25);
  border-radius: 14px;
  padding: 14px 16px;
}

.faqInfo__inner{
  display: flex;
  align-items: center;
  gap: 14px;
}

.faqInfo__icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,167,221,.4);
  color: var(--navy);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faqInfo__text{
  font-size: 13px;
  color: #334155;
  line-height: 1.35;
}

main.wrap{
  padding-top: 12px;
  padding-bottom: 42px;
}

.card{
  margin-top: 16px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
  overflow:hidden;
}

.card__head{
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(0,167,221,.10), rgba(0,0,0,0));
  border-bottom: 1px solid var(--line);
}

.h1{
  margin:0;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: .2px;
}
.lead{
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.form{
  padding: 18px 22px 22px;
}

.req{color:#c1121f}

.sectionCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-top: 14px;
}

.sectionCard--tint{
  background: var(--tint);
}

.sectionRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.sectionTitle{
  font-weight: 900;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .3px;
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field label{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #cfd6e4;
  background:#fff;
  color: var(--text);
  font-size: 14px;
  outline: none;
}

textarea{
  min-height: 140px;
  resize: vertical;
  line-height: 1.35;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(0,167,221,.75);
  box-shadow: 0 0 0 4px rgba(0,167,221,.12);
}

.help{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.mt14{ margin-top: 14px; }

.file{
  padding: 10px;
}

.check{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  line-height: 1.35;
}

.check input{
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.micro{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
}

.btn--primary{
  background: var(--navy);
  color:#fff;
  border-color: rgba(27,45,112,.2);
}

.btn--primary:hover{opacity:.95}

.btn--ghost{
  margin-left: auto;
  background: transparent;
  color: var(--navy);
  border: 1px dashed rgba(27,45,112,.4);
}

.btn--ghost:hover{
  background: rgba(27,45,112,.05);
}

.actions{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content: space-between;
}

.modal{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.modal__panel{
  width: min(760px, calc(100% - 18px));
  max-height: min(86vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.modal__head{
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.modal__title{
  font-weight: 900;
  color: var(--navy);
}

.modal__x{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-size: 20px;
}

.modal__body{
  padding: 14px 16px;
}

.modal__body details{
  border:1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: var(--tint);
}

.modal__body summary{
  font-weight: 900;
  color: var(--navy);
  cursor:pointer;
}

.modal__p{
  margin-top: 8px;
  color:#334155;
  line-height:1.45;
}

@media(max-width:900px){
  .grid2{grid-template-columns:1fr}
}

@media (max-width: 780px){
  .faqInfo__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .btn--ghost{
    margin-left: 0;
    width: 100%;
  }

  .actions{
    flex-direction: column;
    align-items: stretch;
  }
  .actions .btn{
    width: 100%;
  }
}

@media (max-width: 520px){
  .header{
    padding: 18px 12px 14px;
  }
  .headerLogo{
    max-width: 150px;
  }
  .headerText h1{
    font-size: 18px;
  }
  .headerText p{
    font-size: 13px;
  }
}
