* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0b0f14;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 707px;
  overflow: hidden;
}

.form {
  display: block;
  width: 236.35%;
  height: auto;
  margin-left: -68.17%;
}

.btn-zone {
  position: absolute;
  left: 4.8%;
  right: 25.2%;
  top: 35.4%;
  height: 12%;
  padding: 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f97316;
  color: #fff;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: clamp(1.15rem, 4.5vw, 1.7rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.1;
  padding: 0 4px;
}

.trust {
  background: linear-gradient(180deg, #121820 0%, #0b0f14 100%);
  border-top: 1px solid #f9731633;
  padding: 18px 16px 22px;
  font-family: Arial, sans-serif;
}

.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: #f97316;
  margin-top: 1px;
}

.trust-title {
  color: #fff;
  font-size: clamp(0.95rem, 3.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.trust-sub {
  color: #f97316;
  font-size: clamp(0.82rem, 2.9vw, 0.98rem);
  line-height: 1.3;
  opacity: 0.9;
}

.req-btn {
  display: inline-block;
  margin-top: 14px;
  margin-left: 54px;
  padding: 6px 14px;
  background: transparent;
  color: #f97316;
  border: 1px solid #f97316;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.req-btn:hover {
  background: #f97316;
  color: #0b0f14;
}

.req-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.req-overlay[hidden] {
  display: none !important;
}

.req-modal {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #121820;
  border: 1px solid #f97316;
  border-radius: 12px;
  padding: 28px 22px 24px;
  font-family: Arial, sans-serif;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.req-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #f97316;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.req-heading {
  color: #f97316;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.req-line {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 10px;
  word-break: break-word;
}

.req-line span {
  display: block;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .btn-zone {
    top: 22.5%;
    height: 8.8%;
    left: 5.3%;
    right: 25.7%;
    padding: 0;
  }

  .btn {
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
    border-radius: 9px;
  }

  .trust {
    padding: 14px 12px 18px;
  }

  .req-btn {
    margin-left: 0;
  }
}