.inquiry-complete {
  background: #fafafa;
  min-height: calc(100vh - var(--header-height, 80px));
  padding: 80px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-section {
  width: 100%;
}

.ic-inner {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 86, 36, 0.08);
  margin-bottom: 28px;
}

.ic-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.4;
}

.ic-desc {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.ic-desc strong {
  color: #FF5624;
  font-weight: 700;
}

.ic-divider {
  height: 1px;
  background: #eee;
  margin: 40px 0;
}

.ic-kakao__guide {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 24px;
}

.ic-kakao__guide strong {
  color: #111;
  font-weight: 700;
}

.ic-kakao__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FEE500;
  color: #181600;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ic-kakao__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.ic-actions {
  margin-top: 40px;
}

.ic-actions__home {
  display: inline-block;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.ic-actions__home:hover {
  color: #FF5624;
  border-color: #FF5624;
}

@media (max-width: 600px) {
  .inquiry-complete {
    padding: 40px 16px 80px;
  }

  .ic-inner {
    padding: 44px 24px;
    border-radius: 12px;
  }

  .ic-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .ic-icon svg {
    width: 56px;
    height: 56px;
  }

  .ic-title {
    font-size: 22px;
  }

  .ic-desc {
    font-size: 15px;
  }

  .ic-divider {
    margin: 32px 0;
  }

  .ic-kakao__btn {
    width: 100%;
    padding: 14px 20px;
  }
}
