.consult-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px clamp(16px, 3.3vw, 48px);
  background: #0f2338;
  z-index: 10;
}

.consult-bar__label {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.consult-bar__field {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #b9c6d2;
  font-size: 14px;
  font-weight: 400;
}

.consult-bar__field--select { width: 170px; }
.consult-bar__field--name { width: 140px; }
.consult-bar__field--tel { width: 200px; }

.consult-bar__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9c6d2;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.consult-bar__agree input {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.2px solid rgba(255,255,255,0.5);
}

.consult-bar__submit {
  padding: 13px 30px;
  border: none;
  border-radius: 999px;
  background: #1a6df5;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* Mobile — replaced by BottomBar (65:1927) */
@media (max-width: 900px) {
  .consult-bar {
    display: none;
  }
}

/* .bottom-bar rules now live in gnb.css (shared across all pages) */
