:root{
  --text:#0f172a;
  --muted:#6b7280;
  --border:#e5e7eb;
  --shadow: 0 20px 60px rgba(2,6,23,.10);
  --r: 14px;
}

.contact{ padding: 28px 16px; background:#fff; }
.contact-wrap{ max-width: 980px; margin: 0 auto; }

.contact-card{
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.contact-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 22px;
}

.field{ display:flex; flex-direction:column; gap:10px; }
.field label{
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.field label span{ color:#111827; }

.field input,
.field textarea{
  width:100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea{
  min-height: 120px;
  resize: vertical;
  padding-top: 14px;
}

.field input::placeholder,
.field textarea::placeholder{
  color: #9ca3af;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

.span-2{ grid-column: span 2; }

.send-btn{
  width:100%;
  margin-top: 6px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  cursor:pointer;
  background: linear-gradient(90deg, #1557ff 0%, #6d3bff 55%, #8b13ff 100%);
  box-shadow: 0 18px 40px rgba(37, 99, 235, .25);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.send-btn:hover{
  filter: brightness(1.03);
  box-shadow: 0 22px 50px rgba(37, 99, 235, .28);
}

.send-btn:active{ transform: translateY(1px); }

.send-ic{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
}

.privacy{
  margin: 14px 0 0;
  text-align:center;
  font-size: 12px;
  color: #6b7280;
}

.privacy a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px){
  .contact-card{ padding: 16px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 14px; }
  .span-2{ grid-column: auto; }
}
