.drp-hero{
  background:
    linear-gradient(90deg,rgba(7,21,41,.98),rgba(7,21,41,.82),rgba(7,21,41,.25)),
    url("../images/drafting-hero.jpg");
  background-size:cover;
  background-position:center right;
  color:#fff;
  padding:86px 0 64px;
}

.drp-hero-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:center;
}

.drp-kicker{
  color:#d8a437;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:900;
}

.drp-hero h1{
  color:#fff;
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  max-width:760px;
  margin:14px 0;
}

.drp-hero p{
  color:rgba(255,255,255,.82);
  max-width:680px;
  font-size:17px;
  line-height:1.75;
}

.drp-hero-card{
  background:rgba(7,21,41,.92);
  border:1px solid rgba(216,164,55,.45);
  border-radius:18px;
  padding:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.drp-hero-card i{
  color:#d8a437;
  font-size:40px;
}

.drp-hero-card strong{
  display:block;
  color:#fff;
  font-size:22px;
  margin:12px 0 4px;
}

.drp-hero-card span{
  color:#d8a437;
  font-weight:800;
}

.drp-main{
  background:#f5f7fa;
  padding:64px 0 86px;
}

.drp-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:28px;
  align-items:start;
}

.drp-side{
  display:grid;
  gap:22px;
}

.drp-panel,
.drp-form-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:16px;
  padding:30px;
  box-shadow:0 14px 38px rgba(8,17,31,.06);
}

.drp-panel.dark{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
}

.drp-panel.dark h2{
  color:#fff;
  font-size:32px;
  line-height:1.08;
  margin:12px 0 24px;
}

.drp-step{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:center;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.14);
}

.drp-step strong{
  color:#d8a437;
  font-size:24px;
}

.drp-step span{
  color:#fff;
  font-weight:800;
}

.drp-panel h3{
  color:#08111f;
  margin-top:0;
}

.drp-list{
  margin:0;
  padding:0;
  list-style:none;
}

.drp-list li{
  padding:11px 0 11px 28px;
  border-bottom:1px solid #e5eaf0;
  color:#5f6b7a;
  position:relative;
}

.drp-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#d8a437;
  font-weight:900;
}

.drp-form-head h2{
  color:#08111f;
  font-size:clamp(32px,4vw,48px);
  line-height:1.1;
  margin:10px 0;
}

.drp-form-head p{
  color:#5f6b7a;
}

.drp-form{
  display:grid;
  gap:18px;
  margin-top:26px;
}

.drp-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.drp-form label{
  display:grid;
  gap:8px;
  color:#08111f;
  font-weight:900;
  font-size:13px;
}

.drp-form input,
.drp-form select,
.drp-form textarea{
  width:100%;
  border:1px solid #dbe5f0;
  border-radius:9px;
  padding:14px;
  background:#fff;
  color:#08111f;
  font:inherit;
}

.drp-form textarea{
  min-height:150px;
}

.drp-upload input{
  background:#fff7eb;
  border-style:dashed;
}

.drp-form input:focus,
.drp-form select:focus,
.drp-form textarea:focus{
  outline:none;
  border-color:#d8a437;
  box-shadow:0 0 0 4px rgba(216,164,55,.12);
}

.drp-form small,
.drp-errors{
  color:#b42318;
  font-size:12px;
  font-weight:800;
}

.drp-note{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  background:#fff7eb;
  border:1px solid #f0dec2;
  border-radius:12px;
  padding:16px;
  color:#5f6b7a;
}

.drp-note i{
  color:#d8a437;
  font-size:24px;
}

.drp-submit{
  border:0;
  background:linear-gradient(135deg,#071529,#10233d);
  color:#d8a437;
  border-radius:8px;
  padding:16px 22px;
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
}

@media(max-width:1000px){
  .drp-hero-grid,
  .drp-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .drp-hero{
    padding:56px 0 42px;
  }

  .drp-hero h1{
    font-size:34px;
  }

  .drp-main{
    padding:42px 0 64px;
  }

  .drp-form-grid{
    grid-template-columns:1fr;
  }

  .drp-panel,
  .drp-form-card{
    padding:24px;
  }

  .drp-submit{
    width:100%;
  }
}
