
:root {
  --c1: #b51f00;
  --c2: #600000;
  --c1-dim: rgba(181,31,0,0.08);
  --c2-dim: rgba(96,0,0,0.06);
  --white: #ffffff;
  --off: #fdfafa;
  --gray: #f5f0f0;
  --border: #e8dede;
  --text: #1a0800;
  --body: #3a2020;
  --muted: #8a6a6a;
  --err: #c0392b;
  --err-soft: rgba(192,57,43,0.09);
}
.pg {
    padding: 0px 30px;
}
.wrap {
  max-width: 860px;
  margin: 0 auto;
}
.hband {
  background: var(--c2);
  border-radius: 18px 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1px 190px;
  overflow: hidden;
  min-height: 180px;
}
.hb-main {
  padding: 36px 40px;
  background: linear-gradient(118deg, var(--c2) 0%, var(--c1) 100%);
  position: relative;
}
.hb-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.hb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.hb-tag-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb3a0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }
.hb-tag-txt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hb-title {  
  font-weight: 900;
  font-size: 46px;
  color: #ffffff;
  line-height: 0.95;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.hb-title-sub {  
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: rgba(255,180,160,0.85);
  line-height: 1.1;
  margin-top: 4px;
}
.hb-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.hb-aside {
  background: var(--c2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
}
.hb-stat {
  text-align: center;
}
.hb-stat-num {  
  font-weight: 900;
  font-size: 52px;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hb-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.hb-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 8px;
}
.hb-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-step-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.hb-step-n.active {
  background: var(--c1);
  border-color: var(--c1);
  color: #fff;
}
.hb-step-txt {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}
.hb-step-txt.active { color: rgba(255,255,255,0.75); }
.body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: 40px 40px 36px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
}
.field-label-icon {
  width: 18px;
  height: 18px;
  fill: var(--c1);
  flex-shrink: 0;
}
.field-ctrl {
  position: relative;
}
.field-ctrl input,
.field-ctrl select {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 16px;  
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--gray);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field-ctrl input::placeholder {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}
.field-ctrl input:focus,
.field-ctrl select:focus {
  border-color: var(--c1);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(181,31,0,0.10);
}
.field.err .field-ctrl input,
.field.err .field-ctrl select {
  border-color: var(--err);
  background: #fff8f7;
  box-shadow: 0 0 0 4px var(--err-soft);
}
.field-ctrl-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.field-ctrl-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--muted);
}
.phone-pair {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 8px;
}
.field-err {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--err);
  padding-left: 2px;
}
.field-err svg {
  width: 11px;
  height: 11px;
  fill: var(--err);
  flex-shrink: 0;
}
.field.err .field-err { display: flex; }
.sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.sec-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c1-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sec-head-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--c1);
}
.sec-head-title {  
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1;
}
.sec-head-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}
.sec-head-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 28px;
}
.sep-line { flex: 1; height: 1px; background: var(--border); }
.sep-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c2-dim);
  border: 1px solid rgba(96,0,0,0.12);
  border-radius: 100px;
  padding: 5px 14px;
}
.sep-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c2);
}
.sep-badge-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c2);
}
.ffoot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;  
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: var(--c1);
  position: relative;
  overflow: hidden;
  transition: transform 0.15px, box-shadow 0.2px;
}
.sub-btn-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.sub-btn:hover .sub-btn-layer { opacity: 1; }
.sub-btn:hover {
  box-shadow: 0 12px 36px rgba(181,31,0,0.35);
  transform: translateY(-2px);
}
.sub-btn:active { transform: scale(0.98); }
.sub-btn-icon {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  position: relative;
  z-index: 1;
}
.sub-btn-txt {
  position: relative;
  z-index: 1;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.secure-note-icon {
  width: 14px;
  height: 14px;
  fill: var(--muted);
  flex-shrink: 0;
}
.success-msg {
  display: none;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(181,31,0,0.05), rgba(96,0,0,0.04));
  border: 1.5px solid rgba(181,31,0,0.18);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}
.success-msg.show { display: flex; }
.success-msg-icon {
  width: 26px;
  height: 26px;
  fill: var(--c1);
  flex-shrink: 0;
}
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0 28px;
}
@media (max-width: 620px) {
  .hband { grid-template-columns: 1fr; }
  .hb-sep, .hb-aside { display: none; }
  .hb-main { padding: 28px 24px; }
  .hb-title { font-size: 36px; }
  .body { padding: 28px 20px 28px; }
  .frow { grid-template-columns: 1fr; }
  .phone-pair { grid-template-columns: 1fr; }
}
.head-title{
    color: #fff !important;
}